librw/tools/dumprwtree/CMakeLists.txt

17 lines
269 B
CMake
Raw Normal View History

add_executable(dumprwtree
dumprwtree.cpp
)
target_link_libraries(dumprwtree
PUBLIC
librw
)
if(LIBRW_INSTALL)
install(TARGETS dumprwtree
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
)
endif()
2021-06-22 18:47:36 +01:00
librw_platform_target(dumprwtree INSTALL)