mirror of
https://github.com/araxiaonline/AscEmu.git
synced 2026-06-13 03:02:22 -04:00
* Fix SRC_TBC_SHADOWLABYRINTH_SCRIPTS_FILES (not added)
fix Installing ./libmysql.lib
Delete USE_PCH_INCLUDES
Revert unset()
language version must be global 😉
* Update CheckSystem.cmake
23 lines
465 B
CMake
23 lines
465 B
CMake
# Copyright (c) 2014-2023 AscEmu Team <http://www.ascemu.org>
|
|
cmake_minimum_required(VERSION 3.16.3)
|
|
|
|
project(Ascemu)
|
|
|
|
# cmake options
|
|
include(cmake/Options.cmake)
|
|
|
|
# perform system tasks
|
|
include(cmake/CheckSystem.cmake)
|
|
|
|
# add dependecies
|
|
add_subdirectory(dep)
|
|
|
|
# add executables
|
|
add_subdirectory(src)
|
|
|
|
# add script libraries
|
|
add_subdirectory(src/scripts)
|
|
|
|
# install db updates
|
|
install(DIRECTORY ${INSTALL_DB_FILES} DESTINATION sql FILES_MATCHING PATTERN "*.sql")
|