diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2025-05-12 16:21:53 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2025-05-12 16:21:53 +0200 |
| commit | a2c73b6ba3c9ea307b0b0eb94c9e769a1f31dc00 (patch) | |
| tree | 4235e54f0557c76b1226367b8cd5e5f561d7662a /CMakeLists.txt | |
| parent | 45ef4948db670224c7cc727507f84924bd826002 (diff) | |
| download | turns-a2c73b6ba3c9ea307b0b0eb94c9e769a1f31dc00.tar.xz turns-a2c73b6ba3c9ea307b0b0eb94c9e769a1f31dc00.zip | |
lib: move C library to new directory
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 84ead94..a6db0f4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -67,6 +67,7 @@ FetchContent_MakeAvailable("Catch2" "nlohmann_json") pkg_check_modules("giomm" IMPORTED_TARGET REQUIRED "giomm-2.68>=${GLIB_MINIMUM_VERSION}") pkg_check_modules("glibmm" IMPORTED_TARGET REQUIRED "glibmm-2.68>=${GLIB_MINIMUM_VERSION}") pkg_check_modules("gtkmm" IMPORTED_TARGET REQUIRED "gtkmm-4.0>=${GTK4_MINIMUM_VERSION}") +pkg_check_modules("gobject" IMPORTED_TARGET REQUIRED "gobject-2.0>=${GLIB_MINIMUM_VERSION}") add_subdirectory("deps/libadwaitamm" EXCLUDE_FROM_ALL SYSTEM) @@ -74,11 +75,13 @@ include("Catch") # Targets -add_subdirectory("app") -add_subdirectory("core") -add_subdirectory("lang") -add_subdirectory("style") -add_subdirectory("ui") +add_subdirectory("lib") + +# add_subdirectory("app") +# add_subdirectory("core") +# add_subdirectory("lang") +# add_subdirectory("style") +# add_subdirectory("ui") # License |
