0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-24 00:33:02 +03:00
LimeReport/designer/CMakeLists.txt
Youssef BEDDAD 8575dd25d3 Update:
- added missing lrchartaxiseditor to CMakeLists.txt to fix LRDesigner and demo_r1 builds
 - added -qt${QT_VERSION_MAJOR} to demo_r1 and LRDesigner CMakeLists.txt project files
2022-05-21 20:30:14 +01:00

21 lines
483 B
CMake

set(CMAKE_AUTOMOC ON)
set(LRDESIGNER_FILES
designersettingmanager.h
designersettingmanager.cpp
main.cpp
mainicon.rc
)
add_executable(LRDesigner ${LRDESIGNER_FILES})
target_include_directories(LRDesigner PUBLIC ${PROJECT_SOURCE_DIR}/include)
target_link_libraries(LRDesigner PUBLIC
Qt${QT_VERSION_MAJOR}::Core
Qt${QT_VERSION_MAJOR}::Widgets
Qt${QT_VERSION_MAJOR}::PrintSupport
Qt${QT_VERSION_MAJOR}::Qml
${PROJECT_NAME}-qt${QT_VERSION_MAJOR}
)