From 912b54eb6954399f18441c0f63e7ad20021671c3 Mon Sep 17 00:00:00 2001 From: Steven Noonan Date: Mon, 30 Jan 2012 20:06:12 -0800 Subject: 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 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () -- cgit v1.2.3