mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 08:39:01 +08:00
a72a3d5459
* [physfs] cleanup * Fix symbol names * Add usage doc * [cmake-user] Test PhysFS * Add wrapper * Restore msbuild for uwp
7 lines
438 B
CMake
7 lines
438 B
CMake
find_library(PHYSFS_LIBRARY_RELEASE NAMES physfs physfs-static NAMES_PER_DIR PATHS "${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/lib" NO_DEFAULT_PATH)
|
|
find_library(PHYSFS_LIBRARY_DEBUG NAMES physfs physfs-static NAMES_PER_DIR PATHS "${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug/lib" NO_DEFAULT_PATH)
|
|
include(SelectLibraryConfigurations)
|
|
select_library_configurations(PHYSFS)
|
|
unset(PHYSFS_FOUND)
|
|
_find_package(${ARGS})
|