squirrel/sqstdlib/CMakeLists.txt

21 lines
340 B
CMake
Raw Normal View History

2016-01-29 18:56:44 +01:00
cmake_minimum_required(VERSION 2.8)
project(sqstd)
# sources
set(SQSTD_SRCS
sqstdblob.cpp
sqstdio.cpp
sqstdstream.cpp
sqstdmath.cpp
sqstdsystem.cpp
sqstdstring.cpp
2016-01-29 18:56:44 +01:00
sqstdaux.cpp
sqstdrex.cpp
)
# shared lib
add_library(sqstd SHARED ${SQSTD_SRCS})
# static lib
add_library(sqstd_static STATIC ${SQSTD_SRCS})