mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-13 09:20:47 +00:00
8 lines
257 B
Text
8 lines
257 B
Text
The package libflac provides CMake targets:
|
|
|
|
find_package(FLAC CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE FLAC::FLAC)
|
|
|
|
# Or use the C++ API
|
|
find_package(FLAC CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE FLAC::FLAC++)
|