kima2/CMakeLists.txt

14 lines
272 B
CMake

cmake_minimum_required(VERSION 3.5)
project(KIMA2)
if(MSVC)
add_compile_options(/W4 /WX)
else()
add_compile_options(-W -Wall -Werror)
endif()
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib)
add_subdirectory(src)