mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-02-24 04:51:12 +00:00
8 lines
150 B
Text
8 lines
150 B
Text
|
cmake_minimum_required(VERSION 3.12)
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 17)
|
||
|
|
||
|
file(GLOB COMMON_SRC "*.h" "*.c" "*.cpp")
|
||
|
|
||
|
add_library(common OBJECT ${COMMON_SRC})
|