1
0
mirror of https://github.com/aap/librw.git synced 2025-04-25 11:04:41 +01:00
Filip Gawin 7ce4328601 Add cmake config file
Big thanks for @madebr who made all work
2020-10-27 01:25:09 +01:00

15 lines
242 B
CMake

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