xgmsv/CMakeLists.txt

13 lines
434 B
CMake
Raw Permalink Normal View History

2020-03-03 07:27:11 +08:00
# 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 )
2022-05-09 07:55:14 +08:00
include( "${CMAKE_SOURCE_DIR}/cmaid/loader.cmake" )
project( DIRECTORY_NAME )
2020-03-03 07:27:11 +08:00
2022-05-09 07:55:14 +08:00
SET( GLOBAL_DEFINE
_CRT_SECURE_NO_WARNINGS
)
2020-03-03 07:27:11 +08:00
2022-05-09 07:55:14 +08:00
cmaid_build( GLOBAL_DEFINE )