mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-24 16:15:01 +00:00
f613cd1cb4
Details, documentation, and language bindings are works in progress and will be evolving over the course of KiCad 9 development.
8 lines
218 B
CMake
8 lines
218 B
CMake
add_library( expected INTERFACE )
|
|
|
|
target_include_directories( expected INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include )
|
|
|
|
target_sources( expected INTERFACE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/include/tl/expected.hpp
|
|
)
|