15 lines
390 B
CMake
15 lines
390 B
CMake
@PACKAGE_INIT@
|
|
|
|
# Pokemon Battle Simulator CMake Configuration
|
|
set(PokEng_VERSION "@PROJECT_VERSION@")
|
|
|
|
# Set up import targets
|
|
include("${CMAKE_CURRENT_LIST_DIR}/PokEngTargets.cmake")
|
|
|
|
# Set up variables for consumers
|
|
set(PokEng_LIBRARIES PokEng::pokemon_battle_sim)
|
|
set(PokEng_INCLUDE_DIRS "@CMAKE_INSTALL_FULL_INCLUDEDIR@")
|
|
|
|
# Check required components
|
|
check_required_components(PokEng)
|