15 lines
414 B
CMake
15 lines
414 B
CMake
@PACKAGE_INIT@
|
|
|
|
# Pokemon Battle Simulator CMake Configuration
|
|
set(PokemonSim_VERSION "@PROJECT_VERSION@")
|
|
|
|
# Set up import targets
|
|
include("${CMAKE_CURRENT_LIST_DIR}/PokemonSimTargets.cmake")
|
|
|
|
# Set up variables for consumers
|
|
set(PokemonSim_LIBRARIES PokemonSim::pokemon_battle_sim)
|
|
set(PokemonSim_INCLUDE_DIRS "@CMAKE_INSTALL_FULL_INCLUDEDIR@")
|
|
|
|
# Check required components
|
|
check_required_components(PokemonSim)
|