mirror of
https://github.com/rehlds/reunion.git
synced 2025-01-12 05:47:54 +03:00
13 lines
341 B
CMake
13 lines
341 B
CMake
cmake_minimum_required(VERSION 3.1)
|
|
project(reunion CXX)
|
|
|
|
if (WIN32)
|
|
message(FATAL_ERROR "CMakeLists.txt Windows platform isn't supported yet. Use msvc/Reunion.sln instead it!")
|
|
endif()
|
|
|
|
add_custom_target(appversion DEPENDS
|
|
COMMAND "${PROJECT_SOURCE_DIR}/reunion/version/appversion.sh" "${PROJECT_SOURCE_DIR}"
|
|
)
|
|
|
|
add_subdirectory(reunion)
|