Skip to content
Snippets Groups Projects
Verified Commit e49d2c5b authored by Hendrik's avatar Hendrik Committed by Ralph Giles
Browse files

Include targets from all configurations


Signed-off-by: default avatarRalph Giles <giles@thaumas.net>
Signed-off-by: default avatarevpobr <evpobr@gmail.com>
parent 8d742acb
No related branches found
No related tags found
No related merge requests found
......@@ -4,5 +4,11 @@ find_dependency(
Opus
)
# TODO: include(...opusfileTargets-debug.cmake)?
include("${CMAKE_CURRENT_LIST_DIR}/opusfileTargets.cmake")
# Load information for each installed configuration.
get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
file(GLOB CONFIG_FILES "${_DIR}/opusfileTargets-*.cmake")
foreach(f ${CONFIG_FILES})
include(${f})
endforeach()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment