mirror of
https://github.com/iriselia/xgmsv.git
synced 2025-04-02 13:48:26 +08:00
13 lines
434 B
CMake
13 lines
434 B
CMake
# Debug : w/ debug symbols, w/o optimization
|
|
# Release : w/o debug symbols, w/ optimization
|
|
# RelWithDebInfo : w/ debug symbols, w/ optimization
|
|
# MinSizeRel : w/o debug symbols, w/ optimization, stripped binaries
|
|
cmake_minimum_required( VERSION 3.0 )
|
|
include( "${CMAKE_SOURCE_DIR}/cmaid/loader.cmake" )
|
|
project( DIRECTORY_NAME )
|
|
|
|
SET( GLOBAL_DEFINE
|
|
_CRT_SECURE_NO_WARNINGS
|
|
)
|
|
|
|
cmaid_build( GLOBAL_DEFINE ) |