1
General discussions / When will you release SFML 2.6.0 officially?
« on: February 22, 2023, 04:40:25 pm »
When will you release SFML 2.6.0 officially?
Looking forward to it.
Looking forward to it.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
SFML found but some of its dependencies are missing ( FreeType OpenAL
VorbisFile VorbisEnc Vorbis Ogg FLAC)
cmake_minimum_required(VERSION 3.16)
project(Test01)
set(CMAKE_CXX_STANDARD 20)
set(SFML_STATIC_LIBRARIES TRUE)
set(SFML_DIR "../SFML-master-t2")
find_package(SFML REQUIRED COMPONENTS audio network graphics window system)
add_executable(Test01 main.cpp)
target_link_libraries(Test01 sfml-graphics sfml-audio sfml-network sfml-window sfml-system)