0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-02 03:53:19 +03:00

cmake: add options ENABLE_DIALOG_DESIGNER and HAVE_UI_LOADER

This commit is contained in:
jihadist
2024-10-13 21:41:33 +03:00
parent 731c05454d
commit fd6974ca65
6 changed files with 126 additions and 13 deletions

17
console/CMakeLists.txt Normal file
View File

@@ -0,0 +1,17 @@
project(console)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTORCC ON)
set(PROJECT_SOURCES
main.cpp
)
add_executable(${PROJECT_NAME} main.cpp ${PROJECT_SOURCES})
target_link_libraries(${PROJECT_NAME} PRIVATE
Qt${QT_VERSION_MAJOR}::Core
limereport-qt${QT_VERSION_MAJOR}
)