nameof_module/example/CMakeLists.txt
2018-08-29 16:57:44 +05:00

16 lines
636 B
CMake

set(SOURCES example.cpp ${CMAKE_SOURCE_DIR}/include/nameof.hpp)
include_directories(${CMAKE_SOURCE_DIR}/include)
add_executable(example ${SOURCES})
if((CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang"))
set(CMAKE_VERBOSE_MAKEFILE ON)
target_compile_options(example PRIVATE -Wall -Wextra -pedantic-errors)
target_compile_options(example PRIVATE -std=c++11)
elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
target_compile_options(example PRIVATE /W4)
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.11)
target_compile_options(example PRIVATE /permissive-)
endif()
endif()