mirror of
https://github.com/aap/librw.git
synced 2024-11-26 05:35:42 +00:00
16 lines
264 B
CMake
16 lines
264 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()
|