2020-02-03 18:10:29 +00:00
|
|
|
cmake_minimum_required(VERSION 3.15)
|
|
|
|
project(another_studproject)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
2020-02-07 01:28:32 +00:00
|
|
|
|
|
|
|
# Process Abseil's CMake build system
|
|
|
|
add_subdirectory(./src/includes/3thparty/abseil-cpp
|
|
|
|
./src/includes/3thparty/tsl
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
add_executable(studproject
|
2020-02-03 18:10:29 +00:00
|
|
|
./src/includes/generator.h
|
|
|
|
./src/generator.cpp
|
|
|
|
./src/includes/tests.h
|
|
|
|
./src/includes/aggregate_tests.h
|
2020-02-07 01:28:32 +00:00
|
|
|
./src/includes/3thparty/emilib/loguru.cpp
|
2020-02-07 16:17:30 +00:00
|
|
|
./src/main.cpp
|
2020-02-07 01:28:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(studproject
|
|
|
|
absl::hash
|
|
|
|
absl::node_hash_map
|
|
|
|
absl::flat_hash_map
|
|
|
|
pthread
|
|
|
|
dl
|
2020-02-07 19:19:02 +00:00
|
|
|
stdc++fs
|
2020-02-07 01:28:32 +00:00
|
|
|
)
|
2020-02-03 18:10:29 +00:00
|
|
|
|