15 lines
351 B
CMake
15 lines
351 B
CMake
cmake_minimum_required (VERSION 3.8)
|
|
project (auxiliarytool)
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
set(CMAKE_BUILD_TYPE "Release")
|
|
endif()
|
|
if (MSVC)
|
|
add_compile_options(/source-charset:utf-8)
|
|
add_compile_options(/EHsc)
|
|
add_compile_options(-D_CRT_SECURE_NO_WARNINGS)
|
|
endif()
|
|
|
|
add_subdirectory(cryp)
|
|
add_subdirectory(test) |