mirror of
https://github.com/yoboujon/dumber.git
synced 2025-06-08 13:50:49 +02:00
7 lines
No EOL
184 B
CMake
7 lines
No EOL
184 B
CMake
cmake_minimum_required(VERSION 3.9)
|
|
project(stress)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
set(SOURCE_FILES main.cpp ../../src/robot.cpp ../../src/robot.h)
|
|
add_executable(stress ${SOURCE_FILES}) |