Skip to content
Snippets Groups Projects
Select Git revision
  • e6dc95163094692d11715711d5c1aaa19841dd77
  • 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

Doxygen.conf

Blame
  • CMakeLists.txt 598 B
    # Catch2
    # TODO: integrate with ctest
    add_library(catch2 INTERFACE)
    target_include_directories(catch2 INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/catch2)
    
    # clara
    add_library(clara INTERFACE)
    target_include_directories(clara INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/clara)
    
    # CMA-ES (c-cmaes)
    # From https://github.com/CMA-ES/c-cmaes. Not using it as a submodule since their repo isn't
    # organized in the most extensible way and I'm compiling it as C++ anyway.
    add_subdirectory(cma-es)
    
    # nlohmann JSON
    add_library(json INTERFACE)
    target_include_directories(json INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/json)