No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 184B

1234567
  1. cmake_minimum_required(VERSION 3.9)
  2. project(stress)
  3. set(CMAKE_CXX_STANDARD 11)
  4. set(SOURCE_FILES main.cpp ../../src/robot.cpp ../../src/robot.h)
  5. add_executable(stress ${SOURCE_FILES})