diff options
author | Tim Besard <tim.besard@gmail.com> | 2012-01-31 14:10:16 -0800 |
---|---|---|
committer | Tim Besard <tim.besard@gmail.com> | 2012-01-31 14:10:16 -0800 |
commit | 9fc1926948004d12953c102b014dc9db798bc42b (patch) | |
tree | f68631be861e6542ffa2e03ff41804a9261a9675 | |
parent | 9bcc8edad6c73d39a84555578cccfe66faa8da95 (diff) | |
parent | 912b54eb6954399f18441c0f63e7ad20021671c3 (diff) |
Merge pull request #1 from tycho/fixes-for-maleadt
Fix CMakeLists.txt libnuma linkage.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 366b4c4..0587b0a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,7 @@ target_link_libraries(chase run timer output experiment spinbarrier) target_link_libraries(chase ${CMAKE_THREAD_LIBS_INIT}) if (USE_LIBNUMA) if(LIBNUMA) - target_link_libraries(pChase ${LIBNUMA}) + target_link_libraries(chase ${LIBNUMA}) else () message(STATUS "WARNING: libnuma not found, not compiling against it") endif () |