mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 21:59:10 +08:00
9 lines
246 B
CMake
9 lines
246 B
CMake
find_path(OGG_INCLUDE_DIR NAMES ogg/ogg.h)
|
|
|
|
find_library(OGG_LIBRARY NAMES ogg)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(OGG DEFAULT_MSG OGG_LIBRARY OGG_INCLUDE_DIR)
|
|
|
|
mark_as_advanced(OGG_INCLUDE_DIR OGG_LIBRARY)
|