mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-22 17:19:18 +01:00
9 lines
241 B
Plaintext
9 lines
241 B
Plaintext
|
sdl2 provides CMake targets:
|
||
|
|
||
|
find_package(SDL2 CONFIG REQUIRED)
|
||
|
target_link_libraries(main
|
||
|
PRIVATE
|
||
|
$<TARGET_NAME_IF_EXISTS:SDL2::SDL2main>
|
||
|
$<IF:$<TARGET_EXISTS:SDL2::SDL2>,SDL2::SDL2,SDL2::SDL2-static>
|
||
|
)
|