diff options
author | Steven Noonan <steven@uplinklabs.net> | 2012-01-30 20:06:12 -0800 |
---|---|---|
committer | Steven Noonan <steven@uplinklabs.net> | 2012-01-30 20:06:12 -0800 |
commit | 912b54eb6954399f18441c0f63e7ad20021671c3 (patch) | |
tree | f68631be861e6542ffa2e03ff41804a9261a9675 | |
parent | 9bcc8edad6c73d39a84555578cccfe66faa8da95 (diff) |
fix CMakeLists.txt libnuma linkage
target_link_libraries referred to an old target name, resulting in this error
message:
CMake Error at CMakeLists.txt:46 (target_link_libraries):
Cannot specify link libraries for target "pChase" which is not built by
this project.
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
-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 () |