Update of /cvsroot/wxlua/wxLua/build
In directory vz-cvs-4.sog:/tmp/cvs-serv10137/build
Modified Files:
CMakeFunctions.txt
Log Message:
Install the samples and docs with cmake.
Index: CMakeFunctions.txt
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/CMakeFunctions.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** CMakeFunctions.txt 29 Oct 2011 06:45:18 -0000 1.2
--- CMakeFunctions.txt 9 Nov 2011 04:30:08 -0000 1.3
***************
*** 487,491 ****
# Set the install includes to use same dir structure as the source directories
#STRING(REPLACE "${CMAKE_HOME_DIRECTORY}/" "" PROJ_DIR_TEMP ${CMAKE_CURRENT_SOURCE_DIR})
! #INSTALL(FILES
# ${HEADER_FILES} DESTINATION "include/${PROJ_DIR_TEMP}")
--- 487,491 ----
# Set the install includes to use same dir structure as the source directories
#STRING(REPLACE "${CMAKE_HOME_DIRECTORY}/" "" PROJ_DIR_TEMP ${CMAKE_CURRENT_SOURCE_DIR})
! #INSTALL(FILES
# ${HEADER_FILES} DESTINATION "include/${PROJ_DIR_TEMP}")
***************
*** 812,823 ****
function( TARGET_PRECOMPILED_HEADER target_name )
- # There is some problem that makes MSVC6 recompile the precomp header
- # and therefore every source file every build.
- if (MSVC60)
- MESSAGE(STATUS "* WARNING: Disabling precomplied headers for MSVC6 for ${target_name}, sorry...")
- return()
- endif()
-
-
# Allow people to en/disable precomp headers to test if it actually works or not.
# GCC is a little tricky to get right since you have to compile it exactly the same flags
--- 812,815 ----
|