mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-21 22:05:42 -04:00
16 lines
301 B
CMake
16 lines
301 B
CMake
add_executable(duckstation-sdl
|
|
main.cpp
|
|
)
|
|
|
|
if(WIN32)
|
|
target_sources(duckstation-sdl PRIVATE
|
|
duckstation-sdl.manifest
|
|
)
|
|
|
|
# We want a Windows subsystem application not console.
|
|
set_target_properties(duckstation-sdl PROPERTIES
|
|
WIN32_EXECUTABLE TRUE
|
|
DEBUG_POSTFIX "-debug")
|
|
endif()
|
|
|