fa381cd2aa
Provide leap named CMake files in build directory and dev package as preferred way for other projects to use Leap as a dependency. License files now installed in folder named leap rather than eosio.
9 lines
347 B
CMake
9 lines
347 B
CMake
if(NOT EOSIO_ROOT)
|
|
list(APPEND CMAKE_MODULE_PATH @EOS_ROOT_DIR@/cmake/eosio)
|
|
else()
|
|
# legacy behavior for anyone configuring with -DEOSIO_ROOT=/foo or such
|
|
list(APPEND CMAKE_MODULE_PATH ${EOSIO_ROOT}/lib/cmake/eosio)
|
|
list(APPEND CMAKE_MODULE_PATH ${EOSIO_ROOT}/lib64/cmake/eosio)
|
|
endif()
|
|
include(EosioTester)
|
|
include(EosioCheckVersion) |