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
|
2016-02-15 20:51:20 +01:00
|
|
|
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})
|