Changeset 7356
- Timestamp:
- Sep 5, 2010, 5:31:56 PM (14 years ago)
- Location:
- code/branches/doc/doc/api
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/doc/doc/api/CMakeLists.txt
r7353 r7356 64 64 ENDIF() 65 65 66 # Take care of most of the conditional compilation problems 67 # (Doxygen requires separate input for that) 68 IF(WIN32) 69 SET(DOXY_PLATFORM_DEF "ORXONOX_PLATFORM_WINDOWS") 70 ELSEIF(APPLE) 71 SET(DOXY_PLATFORM_DEF "ORXONOX_PLATFORM_APPLE ORXONOX_PLATFORM_UNIX") 72 ELSE() 73 SET(DOXY_PLATFORM_DEF "ORXONOX_PLATFORM_LINUX ORXONOX_PLATFORM_UNIX") 74 ENDIF() 75 IF(MSVC) 76 SET(DOXY_COMPILER_DEF "ORXONOX_COMPILER_MSVC") 77 ELSE() 78 SET(DOXY_COMPILER_DEF "ORXONOX_COMPILER_GCC") 79 ENDIF() 80 66 81 IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/doxy.config.in) 67 82 # use (configured) doxy.config from (out of place) BUILD tree: -
code/branches/doc/doc/api/doxy.config.in
r7346 r7356 1292 1292 # way by setting EXPAND_ONLY_PREDEF to YES. 1293 1293 1294 MACRO_EXPANSION = YES1294 MACRO_EXPANSION = NO 1295 1295 1296 1296 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES … … 1309 1309 # the preprocessor. 1310 1310 1311 INCLUDE_PATH = 1311 INCLUDE_PATH = #@DOXYGEN_INCLUDE_DIRECTORIES@ 1312 1312 1313 1313 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard … … 1326 1326 # instead of the = operator. 1327 1327 1328 PREDEFINED = DOXYGEN_SHOULD_SKIP_THIS 1328 PREDEFINED = DOXYGEN_SHOULD_SKIP_THIS \ 1329 @DOXY_PLATFORM_DEF@ \ 1330 @DOXY_COMPILER_DEF@ 1329 1331 1330 1332 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
Note: See TracChangeset
for help on using the changeset viewer.