2020-10-26 23:41:07 +00:00
|
|
|
add_executable(dumprwtree
|
2020-12-03 17:11:55 +00:00
|
|
|
dumprwtree.cpp
|
|
|
|
)
|
2020-10-26 23:41:07 +00:00
|
|
|
|
|
|
|
target_link_libraries(dumprwtree
|
2021-06-22 21:51:20 +01:00
|
|
|
PRIVATE
|
|
|
|
librw::librw
|
2020-12-03 17:11:55 +00:00
|
|
|
)
|
2020-10-26 23:41:07 +00:00
|
|
|
|
|
|
|
if(LIBRW_INSTALL)
|
|
|
|
install(TARGETS dumprwtree
|
|
|
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
2020-12-03 17:11:55 +00:00
|
|
|
)
|
2020-10-26 23:41:07 +00:00
|
|
|
endif()
|
2021-06-17 14:44:20 +01:00
|
|
|
|
2021-06-22 18:47:36 +01:00
|
|
|
librw_platform_target(dumprwtree INSTALL)
|