1
0
mirror of https://github.com/aap/librw.git synced 2025-03-10 20:07:19 +00:00

15 lines
226 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()