diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2019-10-26 22:19:56 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2019-12-10 21:29:28 +0100 |
commit | 361891f25ca735fd85db64a14823cc55b8a0619a (patch) | |
tree | d45734fbc123d8dcb26128b314eb4453ecdd154e /CMakeLists.txt | |
parent | 1a1b36dea942cd7b18067f3f1220c9ab4f9b4448 (diff) |
Basic object encoding and storage
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..66406b1 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +cmake_minimum_required(VERSION 3.10) +project(Erebos) + +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) + +find_package(Threads REQUIRED) +find_package(ZLIB REQUIRED) +find_library(B2_LIBRARY b2 REQUIRED) + +add_subdirectory(src) |