mirror of
https://github.com/QuasarApp/pe-parse.git
synced 2025-04-27 04:44:31 +00:00
Massages the pe-parse build into a format that's more accomodating for vcpkg, in preparation for imminent packaging.
6 lines
271 B
CMake
6 lines
271 B
CMake
find_path(PEPARSE_INCLUDE_DIR "parser-library/parse.h")
|
|
find_library(PEPARSE_LIBRARIES NAMES "libpe-parser-library" "pe-parser-library")
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(pe-parse DEFAULT_MSG PEPARSE_INCLUDE_DIR PEPARSE_LIBRARIES)
|