23 lines
320 B
CMake
23 lines
320 B
CMake
|
|
cmake_minimum_required(VERSION 3.8)
|
||
|
|
project(Test VERSION 0.1)
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -fno-omit-frame-pointer -Wno-deprecated-declarations")
|
||
|
|
|
||
|
|
aux_source_directory(./ DIR_ROOT)
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
add_executable(
|
||
|
|
Test
|
||
|
|
${DIR_ROOT})
|
||
|
|
|
||
|
|
target_link_libraries(Test)
|
||
|
|
|
||
|
|
target_include_directories(
|
||
|
|
Test
|
||
|
|
PUBLIC )
|
||
|
|
|
||
|
|
|