diff options
Diffstat (limited to 'src/platform/gui/xcb/CMakeLists.txt')
-rw-r--r-- | src/platform/gui/xcb/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/platform/gui/xcb/CMakeLists.txt b/src/platform/gui/xcb/CMakeLists.txt new file mode 100644 index 00000000..2ef675a3 --- /dev/null +++ b/src/platform/gui/xcb/CMakeLists.txt @@ -0,0 +1,8 @@ +find_library(LIBRARY_CAIRO cairo REQUIRED) +find_library(LIBRARY_XCB xcb REQUIRED) +add_library(CruPlatformGuiX11 + UiApplication.cpp + Window.cpp +) +target_link_libraries(CruPlatformGuiX11 PUBLIC CruPlatformGui ${LIBRARY_XCB} ${LIBRARY_CAIRO}) + |