mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
0909e00117
I'm not sure if the previous implementation ever worked.
19 lines
329 B
CMake
19 lines
329 B
CMake
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
set(SRCS
|
|
imgui.cpp
|
|
imgui_draw.cpp
|
|
imgui_tables.cpp
|
|
imgui_widgets.cpp
|
|
)
|
|
|
|
add_library(imgui STATIC ${SRCS})
|
|
target_include_directories(imgui PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
target_link_libraries(imgui
|
|
PRIVATE
|
|
fmt::fmt
|
|
)
|