9 lines
439 B
CMake
9 lines
439 B
CMake
find_package(Qt6 COMPONENTS Core REQUIRED)
|
|
add_library(geopro_controller STATIC
|
|
WorkbenchNavController.cpp
|
|
DatasetDetailController.cpp)
|
|
target_include_directories(geopro_controller PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_link_libraries(geopro_controller PUBLIC geopro_data Qt6::Core)
|
|
target_compile_features(geopro_controller PUBLIC cxx_std_17)
|
|
set_target_properties(geopro_controller PROPERTIES AUTOMOC ON AUTOUIC OFF AUTORCC OFF)
|