15 lines
467 B
CMake
15 lines
467 B
CMake
project(qpicalc)
|
|
if(APPLE)
|
|
set(APP_ICON "")
|
|
elseif(WIN32)
|
|
set(APP_ICON "icons/qpicalculator.ico")
|
|
else()
|
|
set(APP_ICON "icons/qpicalculator.png")
|
|
endif()
|
|
set(APP_INFO "Small calculator ang grapher")
|
|
qad_application(${PROJECT_NAME} "Gui;Widgets" "qad_utils;qad_widgets;qad_graphic;pip;piqt")
|
|
if (Qt5_FOUND)
|
|
import_version(${PROJ_NAME}5 ${PROJECT_NAME})
|
|
deploy_target(${PROJECT_NAME}5 DEPLOY_DIR ${CMAKE_CURRENT_BINARY_DIR} DESTINATION ${ROOT_DIR}/release)
|
|
endif()
|