diff options
author | Trumeet <yuuta@yuuta.moe> | 2022-07-23 13:35:09 -0700 |
---|---|---|
committer | Trumeet <yuuta@yuuta.moe> | 2022-07-23 13:35:09 -0700 |
commit | e2e91b79b77ff90ae4f7607b1e5ee6768c9ccfb4 (patch) | |
tree | fdc742c8a05b1ebca5f667e120729d53ae7781d7 /client/libacron/CMakeLists.txt | |
parent | df85b736cea32bd04e4a80042b9b3c67642d57ba (diff) | |
download | acron-e2e91b79b77ff90ae4f7607b1e5ee6768c9ccfb4.tar acron-e2e91b79b77ff90ae4f7607b1e5ee6768c9ccfb4.tar.gz acron-e2e91b79b77ff90ae4f7607b1e5ee6768c9ccfb4.tar.bz2 acron-e2e91b79b77ff90ae4f7607b1e5ee6768c9ccfb4.zip |
fix(helloworld): ACRONC_DEPS not used
Signed-off-by: Trumeet <yuuta@yuuta.moe>
Diffstat (limited to 'client/libacron/CMakeLists.txt')
-rw-r--r-- | client/libacron/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/libacron/CMakeLists.txt b/client/libacron/CMakeLists.txt index c87063e..b64a299 100644 --- a/client/libacron/CMakeLists.txt +++ b/client/libacron/CMakeLists.txt @@ -98,7 +98,7 @@ if(WIN32) set(ACRONC_DEPS ws2_32) endif() set(ACRONC_DEPS ${ACRON_DEPS} ac) -target_link_libraries(helloworld ac) +target_link_libraries(helloworld ${ACRONC_DEPS}) target_include_directories(helloworld PUBLIC "${PROJECT_BINARY_DIR}" include/) install(TARGETS ac ac-static helloworld |