librw/tools/ska2anm/CMakeLists.txt

17 lines
261 B
CMake
Raw Normal View History

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