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