Skip to content
Snippets Groups Projects
Select Git revision
  • ae6a51492948d621907d3e62c03c2854e6fcc19c
  • master default protected
  • LUFA-170418
  • LUFA-151115
  • LUFA-140928
  • LUFA-140302
  • LUFA-130901
  • LUFA-130901-BETA
  • LUFA-130303
  • LUFA-120730
  • LUFA-120730-BETA
  • LUFA-120219
  • LUFA-120219-BETA
  • LUFA-111009
  • LUFA-111009-BETA
  • LUFA-110528
  • LUFA-110528-BETA
17 results

Descriptors.c

Blame
  • CMakeLists.txt 530 B
    cmake_minimum_required(VERSION 3.13) # 3.13 is required for target_link_options
    project(CppStarter CXX)
    
    if (NOT CMAKE_BUILD_TYPE)
        set(CMAKE_BUILD_TYPE "Release")
    endif()
    message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
    message(STATUS "C++ compiler: ${CMAKE_CXX_COMPILER}")
    
    find_package (Eigen3 3.3 REQUIRED NO_MODULE)
    include(cmake/shared_settings.cmake)
    include(cmake/make_plot_target.cmake)
    
    add_subdirectory(external)
    add_subdirectory(optimization)
    add_subdirectory(test)
    add_subdirectory(apps)
    
    make_meta_plot_target()