mirror of
https://github.com/aap/librw.git
synced 2024-11-25 21:25:42 +00:00
15 lines
226 B
CMake
15 lines
226 B
CMake
add_executable(dumprwtree
|
|
dumprwtree.cpp
|
|
)
|
|
|
|
target_link_libraries(dumprwtree
|
|
PUBLIC
|
|
librw
|
|
)
|
|
|
|
if(LIBRW_INSTALL)
|
|
install(TARGETS dumprwtree
|
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
|
)
|
|
endif()
|