mirror of
https://github.com/fraillt/bitsery.git
synced 2026-06-08 08:13:56 +00:00
13 lines
248 B
CMake
13 lines
248 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
|
|
project(bitsery)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
add_subdirectory(examples)
|
|
|
|
enable_testing()
|
|
add_subdirectory(tests)
|