cmake_minimum_required(VERSION 2.8) cmake_policy(SET CMP0011 NEW) # Add executables add_executable(sandbox sandbox.cpp protobot/front_usir.cpp) target_link_libraries(sandbox OOMLCore OOMLComponents OOMLParts) add_executable(pentaclewheel PentacleWheel.cpp) target_link_libraries(pentaclewheel OOMLCore OOMLComponents OOMLParts) add_subdirectory(protobot) add_executable(mars mars.cpp) target_link_libraries(mars OOMLCore OOMLComponents OOMLParts)