7ce4328601
Big thanks for @madebr who made all work
15 lines
242 B
CMake
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()
|