12 lines
332 B
CMake
12 lines
332 B
CMake
|
cmake_minimum_required(VERSION 3.7)
|
||
|
|
||
|
project(test)
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 17)
|
||
|
find_package(ceev REQUIRED)
|
||
|
add_executable(color_test color_test.cc)
|
||
|
add_executable(lang_test lang_test.cc)
|
||
|
include_directories(${ceev_INCLUDE_DIRS})
|
||
|
target_link_libraries(color_test ${ceev_LIBRARIES})
|
||
|
target_link_libraries(lang_test ${ceev_LIBRARIES})
|