[Assorted-commits] SF.net SVN: assorted: [509] numa-bench/trunk/src
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-26 08:36:17
|
Revision: 509 http://assorted.svn.sourceforge.net/assorted/?rev=509&view=rev Author: yangzhang Date: 2008-02-26 00:36:09 -0800 (Tue, 26 Feb 2008) Log Message: ----------- experimenting with (most promising) build systems Added Paths: ----------- numa-bench/trunk/src/CMakeLists.txt numa-bench/trunk/src/Jamroot Added: numa-bench/trunk/src/CMakeLists.txt =================================================================== --- numa-bench/trunk/src/CMakeLists.txt (rev 0) +++ numa-bench/trunk/src/CMakeLists.txt 2008-02-26 08:36:09 UTC (rev 509) @@ -0,0 +1,7 @@ +project (numa-bench) + +add_executable (malloc malloc.cc) +target_link_libraries (malloc pthread) + +add_executable (avail avail.cc) +target_link_libraries (avail numa) Added: numa-bench/trunk/src/Jamroot =================================================================== --- numa-bench/trunk/src/Jamroot (rev 0) +++ numa-bench/trunk/src/Jamroot 2008-02-26 08:36:09 UTC (rev 509) @@ -0,0 +1,2 @@ +lib pthread ; +exe malloc : malloc.cc pthread : <toolset>gcc:<cxxflags>-g3 ; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |