2010-08-11 04:55:30 +00:00
|
|
|
# Tell cmake our project only concerns the D language.
|
|
|
|
cmake_minimum_required(VERSION 2.8)
|
2010-08-12 04:17:46 +00:00
|
|
|
|
2010-08-14 04:52:06 +00:00
|
|
|
# We must explicitly indicate we're using the D language
|
|
|
|
# in the project declaration. Listing other languages
|
|
|
|
# is fine.
|
|
|
|
PROJECT (CMAKED2_TESTS C D )
|
|
|
|
SET( GLOBAL_DMD_DEFS "-w -wi" )
|
|
|
|
SET( GLOBAL_GCC_DEFS "-Wall -pedantic" )
|
|
|
|
|
|
|
|
# Don't use ADD_DEFINITIONS() with a mixed C + D project
|
|
|
|
# since that adds the same flags to both C and D builds.
|
|
|
|
# Also, the D linker preference is set to 40, which is
|
|
|
|
# higher than C++ (30) and C (10). This causes CMAKE
|
|
|
|
# to use the D linker in mixed linking cases.
|
|
|
|
# Append our own definitions to the defaults.
|
|
|
|
SET( CMAKE_C_FLAGS ${CMAKE_C_FLAGS} ${GLOBAL_GCC_DEFS} )
|
|
|
|
SET( CMAKE_D_FLAGS ${CMAKE_D_FLAGS} ${GLOBAL_DMD_DEFS} )
|
|
|
|
|
2010-08-11 04:55:30 +00:00
|
|
|
enable_testing()
|
2010-08-14 04:52:06 +00:00
|
|
|
|
|
|
|
# build libs first, then apps
|
|
|
|
ADD_SUBDIRECTORY (lib_1)
|
|
|
|
ADD_SUBDIRECTORY (lib_2)
|
2010-08-11 04:55:30 +00:00
|
|
|
ADD_SUBDIRECTORY (app_1)
|
|
|
|
ADD_SUBDIRECTORY (app_2)
|
|
|
|
ADD_SUBDIRECTORY (app_3)
|
2010-08-14 04:52:06 +00:00
|
|
|
ADD_SUBDIRECTORY (app_4)
|