You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
853 B
CMake
48 lines
853 B
CMake
cmake_minimum_required(VERSION 3.24)
|
|
project(prodejna)
|
|
|
|
include(../3rdparty/QxOrm/QxOrm.cmake)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_AUTORCC ON)
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
find_package(Qt6 COMPONENTS
|
|
Core
|
|
Gui
|
|
Widgets
|
|
Sql
|
|
Qml
|
|
REQUIRED)
|
|
|
|
include_directories(../core)
|
|
|
|
add_executable(prodejna
|
|
main.cpp
|
|
appRc.qrc
|
|
application.cpp
|
|
application.h
|
|
logindialog.cpp
|
|
logindialog.h
|
|
logindialog.ui
|
|
mainwindow.cpp
|
|
mainwindow.h
|
|
mainwindow.ui
|
|
shop.rc
|
|
)
|
|
|
|
target_link_libraries(prodejna
|
|
Qt::Core
|
|
Qt::Gui
|
|
Qt::Widgets
|
|
Qt::Sql
|
|
Qt::Qml
|
|
core
|
|
)
|
|
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Release")
|
|
set_property(TARGET prodejna PROPERTY WIN32_EXECUTABLE true)
|
|
endif()
|