From 386a8059d39ca4ea86cc5d1a5ee0667eb52c490e Mon Sep 17 00:00:00 2001 From: Schaich Date: Wed, 24 Mar 2021 21:45:13 +0900 Subject: [PATCH] don't manually setup a library path --- frontend/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/CMakeLists.txt b/frontend/CMakeLists.txt index 39fe5b38..aac8a4c9 100644 --- a/frontend/CMakeLists.txt +++ b/frontend/CMakeLists.txt @@ -18,8 +18,6 @@ add_executable(zint_frontend ${zint_frontend_SRCS}) set_target_properties(zint_frontend PROPERTIES OUTPUT_NAME "zint") -link_directories( "${CMAKE_BINARY_DIR}/backend" ) - target_link_libraries(zint_frontend zint) install(TARGETS zint_frontend DESTINATION "${BIN_INSTALL_DIR}" RUNTIME)