You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
397 B
11 lines
397 B
3 years ago
|
ExternalProject_Add(easyloggingpp
|
||
|
URL https://github.com/amrayn/easyloggingpp/archive/refs/tags/v9.97.0.tar.gz
|
||
|
CONFIGURE_COMMAND cmake -DCMAKE_INSTALL_PREFIX=<BINARY_DIR> <SOURCE_DIR>
|
||
|
#BUILD_COMMAND ""
|
||
|
#INSTALL_COMMAND ""
|
||
|
)
|
||
|
|
||
|
ExternalProject_Get_property(easyloggingpp BINARY_DIR)
|
||
|
set(EASYLOGGINGPP_BINARY_DIR ${BINARY_DIR})
|
||
|
|
||
|
include_directories(${EASYLOGGINGPP_BINARY_DIR}/include)
|