blob: c4abdd06b8a104fe8b2179b6b46a8be3917abfef [file] [log] [blame]
onqtama985f5a2017-04-16 22:48:07 +03001cmake_minimum_required(VERSION 3.0)
2
3project(playground)
4
5include(../cmake/common.cmake)
6
onqtamd320ac22017-04-17 11:44:32 +03007# not using doctest_add_executable because the "doctest" target might not be visible
8# since it's defined in the root "CMakeLists.txt" file and not im "common.cmake"
onqtama985f5a2017-04-16 22:48:07 +03009include_directories("../../doctest/")
onqtamd320ac22017-04-17 11:44:32 +030010add_executable(${PROJECT_NAME} main.cpp test.cpp)
11add_dependencies(${PROJECT_NAME} assemble_single_header)
onqtama985f5a2017-04-16 22:48:07 +030012
13doctest_add_test(NAME ${PROJECT_NAME} COMMAND $<TARGET_FILE:${PROJECT_NAME}>)