cmake_minimum_required(VERSION 2.8) cmake_policy(SET CMP0011 NEW) # Add executables add_executable(protobot protobot.cpp) target_link_libraries(protobot OOMLCore OOMLComponents OOMLParts) #install(TARGETS protobot DESTINATION bin) add_executable(protobot_min protobot_min.cpp) target_link_libraries(protobot_min OOMLCore OOMLComponents OOMLParts) #install(TARGETS protobot_min DESTINATION bin) add_executable(masterbot masterbot.cpp) target_link_libraries(masterbot OOMLCore OOMLComponents OOMLParts) #install(TARGETS masterbot DESTINATION bin)