mirror of
https://github.com/tristanpenman/valijson.git
synced 2024-12-12 10:13:51 +01:00
44 lines
1.2 KiB
CMake
44 lines
1.2 KiB
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
# Add folder where are supportive functions
|
|
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
# Include Qt basic functions
|
|
include(QtCommon)
|
|
|
|
# Basic information about project
|
|
|
|
project(inspector VERSION 1.0)
|
|
|
|
# Set PROJECT_VERSION_PATCH and PROJECT_VERSION_TWEAK to 0 if not present, needed by add_project_meta
|
|
fix_project_version()
|
|
|
|
# Set additional project information
|
|
set(COPYRIGHT "Copyright (c) 2021 Tristan Penman. All rights reserved.")
|
|
set(IDENTIFIER "com.tristanpenman.valijson.inspector")
|
|
|
|
set(SOURCE_FILES
|
|
src/highlighter.cpp
|
|
src/main.cpp
|
|
src/window.cpp
|
|
)
|
|
|
|
include_directories(SYSTEM ../include)
|
|
|
|
add_project_meta(META_FILES_TO_INCLUDE)
|
|
|
|
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core Widgets REQUIRED)
|
|
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core Widgets REQUIRED)
|
|
|
|
add_definitions(-DVALIJSON_USE_EXCEPTIONS=1)
|
|
|
|
add_executable(${PROJECT_NAME} ${OS_BUNDLE} # Expands to WIN32 or MACOS_BUNDLE depending on OS
|
|
${SOURCE_FILES} ${META_FILES_TO_INCLUDE} ${RESOURCE_FILES}
|
|
)
|
|
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE
|
|
Qt${QT_VERSION_MAJOR}::Core
|
|
Qt${QT_VERSION_MAJOR}::Widgets
|
|
)
|