move to new build system

This commit is contained in:
2024-06-06 14:17:47 -05:00
parent 88d8bf63f5
commit aee68520b3
563 changed files with 4283 additions and 361439 deletions

View File

@@ -0,0 +1,14 @@
if(PROJECT_ENABLE_GTKMM)
if(PROJECT_BUILD)
pkg_check_modules(GTKMM REQUIRED gtkmm-${GTKMM_VERSION})
add_definitions(
-DPROJECT_ENABLE_GTKMM
${GTKMM_DEFINITIONS}
)
include_directories(${GTKMM_INCLUDE_DIRS})
link_directories(${GTKMM_LIBRARY_DIRS})
link_libraries(${GTKMM_LIBRARIES})
endif()
endif()