nameof_module/example/CMakeLists.txt

7 lines
190 B
Text
Raw Normal View History

2018-04-04 16:36:18 +00:00
include_directories(${CMAKE_SOURCE_DIR}/include)
2018-03-17 04:31:59 +00:00
2018-04-04 12:19:02 +00:00
set(SOURCE_EXAMPLE
2018-04-04 16:36:18 +00:00
${CMAKE_SOURCE_DIR}/include/nameof.hpp
2018-04-04 12:19:02 +00:00
example.cpp)
2018-03-17 04:31:59 +00:00
2018-04-04 12:19:02 +00:00
add_executable(${PROJECT_NAME}_example ${SOURCE_EXAMPLE})