blob: 79c19c3e9ac75852c5936828487cc6617f7f9559 (
plain)
1
2
3
4
5
6
7
|
The package sfml provides CMake targets:
find_package(SFML COMPONENTS Network Graphics Window Audio System CONFIG REQUIRED)
target_link_libraries(main PRIVATE SFML::Network SFML::Graphics SFML::Window SFML::Audio SFML::System)
# If you want SFML to provide an implementation of main():
target_link_libraries(main PRIVATE SFML::Main)
|