diff options
| author | Tomas Chvatal <scarabeus@gentoo.org> | 2009-05-16 12:30:18 +0200 |
|---|---|---|
| committer | Tomas Chvatal <scarabeus@gentoo.org> | 2009-05-16 12:30:18 +0200 |
| commit | a98ab25ee9fc7df8a4244e8f65e7940df089b44f (patch) | |
| tree | 7a13a7156723ad744503be645ceb51b0557262a2 /src/modules | |
| parent | c89d294c0c0c6c8555dc142f78adeae33f995284 (diff) | |
Rename WITH_SERVER onto BUILD_SERVER to describe the operation more precisely
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/CMakeLists.txt b/src/modules/CMakeLists.txt index df2a6f4..a041e87 100644 --- a/src/modules/CMakeLists.txt +++ b/src/modules/CMakeLists.txt @@ -8,15 +8,15 @@ LINK_LIBRARIES ( ${CMAKE_DL_LIBS} ) ############################################################################### # SOURCE SPECIFICATION ############################################################################### -IF ( WITH_SERVER ) +IF ( BUILD_SERVER ) SET ( SRC_base_modules ${WORKDIR}/server/publicServer.h ) -ELSE ( WITH_SERVER ) +ELSE ( BUILD_SERVER ) SET ( SRC_base_modules ${WORKDIR}/client/interface.h ${WORKDIR}/client/image.h ) -ENDIF ( WITH_SERVER ) +ENDIF ( BUILD_SERVER ) SET ( SRC_base_modules ${SRC_base_modules} ${WORKDIR}/base/main.h ${WORKDIR}/base/modules.h |