mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-27 00:25:42 -04:00
23 lines
518 B
CMake
23 lines
518 B
CMake
add_executable(duckstation
|
|
icon.cpp
|
|
icon.h
|
|
imgui_styles.cpp
|
|
imgui_styles.h
|
|
main.cpp
|
|
opengl_host_display.cpp
|
|
opengl_host_display.h
|
|
sdl_audio_stream.cpp
|
|
sdl_audio_stream.h
|
|
sdl_host_interface.cpp
|
|
sdl_host_interface.h
|
|
)
|
|
|
|
if(WIN32)
|
|
target_sources(duckstation PRIVATE
|
|
d3d11_host_display.cpp
|
|
d3d11_host_display.h
|
|
)
|
|
target_link_libraries(duckstation PRIVATE d3d11.lib winmm.lib)
|
|
endif()
|
|
|
|
target_link_libraries(duckstation PRIVATE YBaseLib core common imgui nativefiledialog glad SDL2::Main) |