diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-08-07 23:25:42 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-08-07 23:25:42 +0800 |
commit | 97dcabd2485fc791972f2a33484e78be2cabca5e (patch) | |
tree | 8ae193883b84509111908452f9b9937d3508bd3d /CMakeLists.txt | |
parent | a9364899ba0e13d49dcfd493382234478df0f3cf (diff) |
Qt5::Core, besides the fact that it's hardcoded and not making use of
find_package's result, might fail when using HomeBrew.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 09eb54e..84a0aec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,7 +29,7 @@ else() add_library(q${PROJECT_NAME} SHARED ${SRCS}) endif() target_link_libraries(q${PROJECT_NAME} - Qt5::Core + ${Qt5Core_LIBRARIES} interchange ) include(GNUInstallDirs) |