1
0
mirror of https://github.com/wqking/eventpp.git synced 2024-12-28 09:08:17 +08:00
eventpp/tests/CMakeLists.txt

23 lines
350 B
CMake
Raw Normal View History

2018-05-13 12:26:27 +08:00
project(eventpptest)
cmake_minimum_required(VERSION 3.2)
set(CMAKE_CXX_STANDARD 11)
set(THIRDPARTY_PATH ../../thirdparty)
include_directories(../include)
if(MSVC)
add_definitions(/W4)
else()
add_definitions(-Wall -Wextra -Wpedantic)
endif()
enable_testing()
2020-12-04 19:45:43 +08:00
add_subdirectory(tutorial)
2018-08-05 12:46:36 +08:00
add_subdirectory(unittest)
add_subdirectory(benchmark)
2018-05-13 12:26:27 +08:00