mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-02-24 13:01:10 +00:00
7 lines
150 B
CMake
7 lines
150 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
file(GLOB COMMON_SRC "*.h" "*.c" "*.cpp")
|
|
|
|
add_library(common OBJECT ${COMMON_SRC})
|