mirror of
https://github.com/rehlds/metamod-r.git
synced 2024-12-26 06:35:33 +03:00
b838abda59
* Implemented CI/CD migration to GitHub * Remove gradle build
13 lines
341 B
CMake
13 lines
341 B
CMake
cmake_minimum_required(VERSION 3.1)
|
|
project(metamod CXX)
|
|
|
|
if (WIN32)
|
|
message(FATAL_ERROR "CMakeLists.txt Windows platform isn't supported yet. Use msvc/metamod.sln instead it!")
|
|
endif()
|
|
|
|
add_custom_target(appversion DEPENDS
|
|
COMMAND "${PROJECT_SOURCE_DIR}/metamod/version/appversion.sh" "${PROJECT_SOURCE_DIR}"
|
|
)
|
|
|
|
add_subdirectory(metamod)
|