Files
coopos/CMakeModules/eosio-config.cmake.in
Areg Hayrapetian fa381cd2aa Some package related renaming of EOSIO to Leap.
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.
2022-08-12 16:16:19 -07:00

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)