You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
291 B
CMake
17 lines
291 B
CMake
|
|
|
|
find_path(FAAC_INCLUDE_DIR
|
|
NAMES faac.h
|
|
)
|
|
|
|
find_library(FAAC_LIBRARY
|
|
NAMES faac
|
|
)
|
|
|
|
set(FAAC_INCLUDE_DIRS ${FAAC_INCLUDE_DIR})
|
|
set(FAAC_LIBRARIES ${FAAC_LIBRARY})
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(FAAC DEFAULT_MSG FAAC_LIBRARY FAAC_INCLUDE_DIR)
|