Skip to content
Snippets Groups Projects
CMakeLists.txt 354 B
Newer Older
  • Learn to ignore specific revisions
  • kongr45gpen's avatar
    kongr45gpen committed
    cmake_minimum_required(VERSION 3.9)
    
    kongr45gpen's avatar
    kongr45gpen committed
    project(ecss_services)
    
    # Set C++ version to c++17
    set(CMAKE_CXX_STANDARD 17)
    
    # Specify the directories for #includes
    
    include_directories("${PROJECT_SOURCE_DIR}/inc")
    
    kongr45gpen's avatar
    kongr45gpen committed
    
    # Specify the .cpp files for the executables
    
    add_executable(ecss_services src/main.cpp src/Message.cpp src/Service.cpp src/Services/TestService.cpp)