mirror of
https://github.com/aap/librw.git
synced 2024-11-26 05:35:42 +00:00
18 lines
294 B
CMake
18 lines
294 B
CMake
add_executable(imguitest WIN32
|
|
main.cpp
|
|
)
|
|
|
|
target_link_libraries(imguitest
|
|
PUBLIC
|
|
librw
|
|
librw_skeleton_imgui
|
|
)
|
|
|
|
if(LIBRW_INSTALL)
|
|
install(TARGETS imguitest
|
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
|
)
|
|
endif()
|
|
|
|
librw_platform_target(imguitest INSTALL)
|