Changeset 6417 for code/trunk/cmake
- Timestamp:
- Dec 25, 2009, 10:23:58 PM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/cmake/FindLua.cmake
r2710 r6417 136 136 ENDIF() 137 137 ENDIF(${LUA_5.0_LUA_LIBRARY} MATCHES "framework") 138 138 139 139 IF(LUA_5.0_LIBRARIES) 140 140 SET(LUA_5.0_FOUND TRUE) -
code/trunk/cmake/FindPackageHandleAdvancedArgs.cmake
r2710 r6417 25 25 # EXACT keyword if specified in FIND_PACKAGE(...). 26 26 # 27 27 28 28 INCLUDE(FindPackageHandleStandardArgs) 29 29 INCLUDE(CompareVersionStrings) -
code/trunk/cmake/LibraryConfig.cmake
r5794 r6417 25 25 # for certain libraries (Boost, OpenAL, TCL) 26 26 # 27 27 28 28 INCLUDE(CompareVersionStrings) 29 29 INCLUDE(FindPackageHandleStandardArgs) -
code/trunk/cmake/LibraryConfigApple.cmake
r5781 r6417 23 23 # Sets necessary library options and paths on Mac. 24 24 # 25 25 26 26 IF(APPLE) 27 27 MESSAGE(STATUS "Running on Apple. Using customized paths and options.") -
code/trunk/cmake/PrecompiledHeaderFiles.cmake
r5929 r6417 23 23 24 24 INCLUDE(GetGCCCompilerFlags) 25 25 26 26 MACRO(PRECOMPILED_HEADER_FILES_PRE_TARGET _target_name _header_file_arg _sourcefile_var) 27 27 … … 94 94 SET(_old_flags "") 95 95 ENDIF() 96 96 SET_SOURCE_FILES_PROPERTIES(${_file} PROPERTIES COMPILE_FLAGS "${_old_flags} /FI\"${_pch_header_file}\" /Yu\"${_pch_header_file}\" /Fp\"${_pch_file}\"") 97 97 ENDIF(NOT _is_header) 98 98 ENDFOREACH(_file) … … 152 152 COMMAND ${CMAKE_CXX_COMPILER} 153 153 ARGS ${pchsupport_compiler_cxx_arg1} ${_pch_gcc_flags} -c -x c++-header -o ${_pch_file} ${_pch_header_file} 154 154 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} 155 155 DEPENDS ${_pch_dep_helper_file} 156 156 IMPLICIT_DEPENDS CXX ${_pch_header_file} -
code/trunk/cmake/SourceFileUtilities.cmake
r6084 r6417 75 75 IF(_compile AND NOT DISABLE_COMPILATIONS) 76 76 LIST(APPEND _compilation ${_filepath}) 77 77 LIST(APPEND _fullpath_sources "H") 78 78 ENDIF() 79 79 ENDIF()
Note: See TracChangeset
for help on using the changeset viewer.