/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: 2016-01-25 23:45:18 UTC
  • mto: This revision was merged to the branch mainline in revision 111.
  • Revision ID: gustav.hartvigsson@gmail.com-20160125234518-6bworw613sf2rp5l
* fixed SLinkedList for the time being.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
  add_definitions(-D_POSIX_C_SOURCE=199309L -D_GNU_SOURCE)
46
46
  # We need -rdynamic to get the traceback information on *nix.
47
47
  # This may not work on all non-windows targets. FIXME.
48
 
  set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pthread -std=c11  -Wall -rdynamic -fstack-protector-strong")
 
48
  set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pthread -std=c11  -Wall -rdynamic -g -fstack-protector-strong")
49
49
 
50
50
  set (CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -pthread -std=c11 -Wall -g -rdynamic -fstack-protector-strong")
51
51