1
0
mirror of https://github.com/aap/librw.git synced 2025-04-04 08:58:01 +01:00
2021-06-22 22:54:02 +02:00

17 lines
277 B
CMake

add_executable(dumprwtree
dumprwtree.cpp
)
target_link_libraries(dumprwtree
PRIVATE
librw::librw
)
if(LIBRW_INSTALL)
install(TARGETS dumprwtree
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
)
endif()
librw_platform_target(dumprwtree INSTALL)