e0b62a61a7
* Add more Git ignore patterns * Fix Ogg dependency handling (closes #203) * Remove unneeded compiler flag (closes #204) * Fix Visual Studio DLL build error error C2491: 'flac_internal_rename_utf8': definition of dllimport function not allowed (closes #205) * Add alias targets * Reduce number of CMake files * Improve CMake intrinsics detection
16 lines
275 B
CMake
16 lines
275 B
CMake
@PACKAGE_INIT@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
find_dependency(Ogg)
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/targets.cmake")
|
|
|
|
if(TARGET FLAC::FLAC)
|
|
set(FLAC_FLAC_FOUND 1)
|
|
endif()
|
|
if(TARGET FLAC::FLAC++)
|
|
set(FLAC_FLAC++_FOUND 1)
|
|
endif()
|
|
|
|
check_required_components(FLAC)
|