mirror of
https://github.com/QuasarApp/pe-parse.git
synced 2025-04-29 13:54:33 +00:00
6 lines
247 B
CMake
6 lines
247 B
CMake
find_path(PEPARSE_INCLUDE_DIR "pe-parse/parse.h")
|
|
find_library(PEPARSE_LIBRARIES NAMES "libpe-parse" "pe-parse")
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(pe-parse DEFAULT_MSG PEPARSE_INCLUDE_DIR PEPARSE_LIBRARIES)
|