13 lines
394 B
CMake
13 lines
394 B
CMake
project(libreborn)
|
|
|
|
add_library(reborn-headers INTERFACE)
|
|
target_include_directories(reborn-headers INTERFACE include)
|
|
|
|
if(BUILD_ARM_COMPONENTS)
|
|
add_library(reborn SHARED src/reborn.c)
|
|
target_link_libraries(reborn dl reborn-headers)
|
|
target_compile_definitions(reborn PUBLIC -DREBORN_HAS_COMPILED_CODE)
|
|
# Install
|
|
install(TARGETS reborn DESTINATION "${MCPI_LIB_DIR}")
|
|
endif()
|