From fb6b33cd7da7b88470a16b7ffba2aa5c0a0ef1ff Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 20 Mar 2016 16:24:03 -0400 Subject: [PATCH] Build: Changed library order --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 35f242e7..53ebccc9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -40,8 +40,8 @@ add_library (libshared STATIC ${libshared_SRCS}) add_executable (timew_executable timew.cpp) add_executable (gr_executable gr.cpp) -target_link_libraries (timew_executable timew libshared commands libshared timew ${TIMEW_LIBRARIES}) -target_link_libraries (gr_executable timew libshared ${TIMEW_LIBRARIES}) +target_link_libraries (timew_executable timew libshared commands timew libshared ${TIMEW_LIBRARIES}) +target_link_libraries (gr_executable timew libshared ${TIMEW_LIBRARIES}) set_property (TARGET timew_executable PROPERTY OUTPUT_NAME "timew") set_property (TARGET gr_executable PROPERTY OUTPUT_NAME "gr")