mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
14 lines
278 B
CMake
14 lines
278 B
CMake
|
project(Platform)
|
||
|
|
||
|
file(GLOB_RECURSE SOURCES src/*)
|
||
|
file(GLOB_RECURSE CAELUM_HDR include/*)
|
||
|
|
||
|
set(SOURCES
|
||
|
fileops.cpp
|
||
|
fileops.hpp
|
||
|
slice_array.hpp
|
||
|
stdint.h
|
||
|
stringops.cpp
|
||
|
stringops.hpp
|
||
|
strings.h)
|
||
|
add_library(platform STATIC ${SOURCES})
|