re3/vendor/librw/tools/dumprwtree/CMakeLists.txt

17 lines
277 B
CMake
Raw Normal View History

2022-08-18 00:24:21 +02:00
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)