8 lines
358 B
Plaintext
8 lines
358 B
Plaintext
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)
|