Changeset 2640 for code/branches/buildsystem2/cmake
- Timestamp:
- Feb 8, 2009, 10:02:58 PM (16 years ago)
- Location:
- code/branches/buildsystem2/cmake
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem2/cmake/BuildConfigGCC.cmake
r2638 r2640 36 36 INCLUDE(CompareVersionStrings) 37 37 COMPARE_VERSION_STRINGS("${GCC_VERSION}" "4.0.0" _compare_result) 38 IF( NOT_compare_result LESS 0)39 SET(GCC_ SYSTEM_HEADER_SUPPORT TRUE)38 IF(_compare_result LESS 0) 39 SET(GCC_NO_SYSTEM_HEADER_SUPPORT) 40 40 ENDIF() 41 41 -
code/branches/buildsystem2/cmake/GenerateToluaBindings.cmake
r2626 r2640 38 38 39 39 SET(_tolua_pkgfile "${CMAKE_CURRENT_BINARY_DIR}/tolua.pkg") 40 SET(_tolua_cxxfile "${CMAKE_CURRENT_BINARY_DIR}/ ToluaBind${_tolua_package}.cc")41 SET(_tolua_hfile "${CMAKE_CURRENT_BINARY_DIR}/ ToluaBind${_tolua_package}.h")40 SET(_tolua_cxxfile "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/ToluaBind${_tolua_package}.cc") 41 SET(_tolua_hfile "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/ToluaBind${_tolua_package}.h") 42 42 43 43 SET(${_target_source_files}
Note: See TracChangeset
for help on using the changeset viewer.