forked from github/server
rename eressea/ to core/
fix compiler flags for core ignore linux build folder
This commit is contained in:
parent
89649844f6
commit
8e289968d0
|
@ -1,3 +1,4 @@
|
||||||
|
build*/
|
||||||
bin/
|
bin/
|
||||||
Debug/
|
Debug/
|
||||||
Release/
|
Release/
|
||||||
|
|
|
@ -14,5 +14,5 @@ add_subdirectory (quicklist)
|
||||||
add_subdirectory (iniparser)
|
add_subdirectory (iniparser)
|
||||||
add_subdirectory (cutest)
|
add_subdirectory (cutest)
|
||||||
add_subdirectory (critbit)
|
add_subdirectory (critbit)
|
||||||
add_subdirectory (eressea/src eressea)
|
add_subdirectory (core/src eressea)
|
||||||
add_subdirectory (src server)
|
add_subdirectory (src server)
|
||||||
|
|
|
@ -3,6 +3,7 @@ project (eressea C)
|
||||||
|
|
||||||
IF(CMAKE_COMPILER_IS_GNUCC)
|
IF(CMAKE_COMPILER_IS_GNUCC)
|
||||||
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pedantic -Wall -Werror -Wno-unknown-pragmas -Wstrict-prototypes -Wpointer-arith -Wno-char-subscripts -Wno-long-long")
|
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pedantic -Wall -Werror -Wno-unknown-pragmas -Wstrict-prototypes -Wpointer-arith -Wno-char-subscripts -Wno-long-long")
|
||||||
|
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -DHAVE__BOOL")
|
||||||
ENDIF(CMAKE_COMPILER_IS_GNUCC)
|
ENDIF(CMAKE_COMPILER_IS_GNUCC)
|
||||||
|
|
||||||
set (ERESSEA_LIBRARY ${PROJECT_NAME} CACHE INTERNAL "Eressea Core Library")
|
set (ERESSEA_LIBRARY ${PROJECT_NAME} CACHE INTERNAL "Eressea Core Library")
|
||||||
|
|
Loading…
Reference in New Issue