mirror of
https://github.com/aap/librw.git
synced 2024-11-26 13:45:42 +00:00
7ce4328601
Big thanks for @madebr who made all work
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()
|