rpgxef/CMakeLists.txt

12 lines
288 B
Text
Raw Normal View History

2019-02-15 23:51:24 +00:00
cmake_minimum_required(VERSION 3.10)
2019-02-15 23:49:31 +00:00
project(rpgxEF LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(BUILD_STATIC false CACHE BOOL "whether to create static binaries")
if(WIN32)
set(BUILD_STATIC true CACHE BOOL "whether to create static binaries")
endif(WIN32)
2019-02-15 23:49:31 +00:00
add_subdirectory(code)