This repository has been archived on 2020-09-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
libs/qad/utils/blockeditor/CMakeLists.txt
2020-08-19 16:22:10 +03:00

15 lines
455 B
CMake

project(blockeditor)
if(APPLE)
set(APP_ICON "")
elseif(WIN32)
set(APP_ICON "icons/blockview.ico")
else()
set(APP_ICON "icons/blockview.png")
endif()
set(APP_INFO "Editor for BlockView Blocks")
qad_application(${PROJECT_NAME} "Gui;Widgets" "qad_utils;qad_widgets;qad_blockview")
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()