CMakeLists.txt 245 Bytes
Newer Older
刘睿博's avatar
ver 1.0  
刘睿博 committed
1 2 3 4 5
cmake_minimum_required(VERSION 3.5.0)
project(stl_debug VERSION 0.1.0 LANGUAGES C CXX)

set(CMAKE_CXX_STANDARD 17)

刘睿博's avatar
1  
刘睿博 committed
6
set(CMAKE_BUILD_TYPE "Debug")
刘睿博's avatar
刘睿博 committed
7

刘睿博's avatar
刘睿博 committed
8 9
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

刘睿博's avatar
ver 1.0  
刘睿博 committed
10 11 12 13 14 15
INCLUDE_DIRECTORIES(
    include
)

add_subdirectory(src)