mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-08 16:01:19 +12:00
Properly list files in CMakeLists instead of using GLOB (#249)
This commit is contained in:
parent
910cdf4d5c
commit
4a3d02db55
9 changed files with 757 additions and 89 deletions
|
@ -1,10 +1,4 @@
|
|||
project(imguiImpl)
|
||||
|
||||
add_library(imguiImpl)
|
||||
|
||||
set_property(TARGET imguiImpl PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|
||||
|
||||
target_sources(imguiImpl PRIVATE
|
||||
add_library(imguiImpl
|
||||
imgui_impl_opengl3.cpp
|
||||
imgui_impl_opengl3.h
|
||||
imgui_impl_vulkan.cpp
|
||||
|
@ -13,6 +7,8 @@ target_sources(imguiImpl PRIVATE
|
|||
imgui_extension.h
|
||||
)
|
||||
|
||||
set_property(TARGET imguiImpl PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|
||||
|
||||
target_include_directories(imguiImpl PUBLIC "../")
|
||||
|
||||
target_link_libraries(imguiImpl PRIVATE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue