/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Gustav Hartvigsson
  • Date: 2015-04-07 08:35:51 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150407083551-eigkistus394ds7e
* Made the code compile using CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
cmake_minimum_required (VERSION 2.8)
2
2
project(SuperSimpleTypeSystem)
3
3
 
4
 
option (DEBUG "Enable debug flags and macros in project" ON)
 
4
 
 
5
option (DEBUG "Enable debug flags and macros in project" TRUE)
 
6
 
 
7
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11")
5
8
 
6
9
add_subdirectory (src)
7
 
add_library (libssts ${SRC})
 
10
add_library (libssts SHARED ${SRC})