mirror of
https://github.com/aap/librw.git
synced 2024-11-25 21:25:42 +00:00
17 lines
261 B
CMake
17 lines
261 B
CMake
add_executable(ska2anm
|
|
ska2anm.cpp
|
|
)
|
|
|
|
target_link_libraries(ska2anm
|
|
PUBLIC
|
|
librw::librw
|
|
)
|
|
|
|
librw_platform_target(ska2anm INSTALL)
|
|
|
|
if(LIBRW_INSTALL)
|
|
install(TARGETS ska2anm
|
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
|
)
|
|
endif()
|