aboutsummaryrefslogtreecommitdiff
path: root/src/osx/gui/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/osx/gui/CMakeLists.txt')
-rw-r--r--src/osx/gui/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/osx/gui/CMakeLists.txt b/src/osx/gui/CMakeLists.txt
index 06ab92db..f3b93bfe 100644
--- a/src/osx/gui/CMakeLists.txt
+++ b/src/osx/gui/CMakeLists.txt
@@ -14,4 +14,6 @@ target_sources(cru_osx_gui PUBLIC
${CRU_OSX_GUI_INCLUDE_DIR}/Window.hpp
)
-target_link_libraries(cru_osx_gui PUBLIC cru_platform_gui cru_osx_graphics_quartz)
+find_library(APPKIT AppKit REQUIRED)
+
+target_link_libraries(cru_osx_gui PUBLIC cru_platform_gui cru_osx_graphics_quartz ${APPKIT})