mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-04-27 04:44:31 +00:00
23 lines
305 B
CMake
23 lines
305 B
CMake
|
|
||
|
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/cpp")
|
||
|
|
||
|
if (LIEF_C_API)
|
||
|
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/c")
|
||
|
endif()
|
||
|
|
||
|
|
||
|
install(
|
||
|
DIRECTORY python
|
||
|
DESTINATION share/LIEF/examples
|
||
|
COMPONENT examples
|
||
|
)
|
||
|
|
||
|
install(
|
||
|
DIRECTORY cmake
|
||
|
DESTINATION share/LIEF/examples
|
||
|
COMPONENT examples
|
||
|
)
|
||
|
|
||
|
|
||
|
|