14 lines
393 B
CMake
14 lines
393 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
project(another_studproject)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_FLAGS "-O3 -flto=thin -march=native")
|
|
add_executable(another_studproject
|
|
./src/includes/generator.h
|
|
./src/generator.cpp
|
|
./src/includes/tests.h
|
|
./src/includes/aggregate_tests.h
|
|
main.cpp
|
|
|
|
|
|
) |