David Cole
b7f3cc22c3
Merge topic 'xcode-asm'
...
97140d3
Tests/Assembler: Do not use assembler in universal binaries
f3477ed
Xcode: Set ASM source language in project file (#13472 )
2012-08-20 15:39:09 -04:00
David Cole
2582994e57
Merge topic 'clang-asm'
...
7e8471c
Recognize Clang ASM support (#13473 )
2012-08-20 15:38:51 -04:00
David Cole
3574bb4842
Merge topic 'generator-expression-conditions'
...
9d9f616
Add $<CONFIG:...> boolean query generator expression
ebf05ab
Add boolean generator expressions
2012-08-20 15:38:42 -04:00
David Cole
5cf828c028
Merge topic 'CheckTypeSize-doc-10579'
...
c6fed68
CheckTypeSize: add a test for size of struct members
48783b7
CheckTypeSize: show in documentation how to get struct member size (#10579 )
2012-08-20 15:38:33 -04:00
David Cole
686eb4e815
Merge topic 'DESTDIR-documentation-enhancement'
...
d593cef
Enhance DESTDIR documentation. Fixes #0012374 .
2012-08-20 15:38:25 -04:00
David Cole
735bdecd30
Merge topic 'GetPrerequisites-file_cmd-advanced'
...
d269984
GetPrerequisites: Mark file_cmd as advanced cache entry
2012-08-20 15:38:16 -04:00
Kitware Robot
7f9a761e76
CMake Nightly Date Stamp
2012-08-20 00:01:03 -04:00
Kitware Robot
d46f8afae9
CMake Nightly Date Stamp
2012-08-19 00:01:05 -04:00
Kitware Robot
ea2fcabbaf
CMake Nightly Date Stamp
2012-08-18 00:01:02 -04:00
Kitware Robot
186e9bdc22
CMake Nightly Date Stamp
2012-08-17 00:01:02 -04:00
Kitware Robot
c4306dc805
CMake Nightly Date Stamp
2012-08-16 00:01:02 -04:00
Brad King
97140d3986
Tests/Assembler: Do not use assembler in universal binaries
...
If CMAKE_OSX_ARCHITECTURES is set then the computed assembler .s source
file may not work for all architectures. Skip it in that case.
2012-08-15 12:55:03 -04:00
Brad King
9d9f616792
Add $<CONFIG:...> boolean query generator expression
...
This expression evaluates to '1' or '0' to indicate whether the build
configuration for which the expression is evaluated matches tha named
configuration. In combination with the "$<0:...>" and "$<1:...>"
expressions this allows per-configuration content to be generated.
2012-08-15 11:44:49 -04:00
Brad King
ebf05abda1
Add boolean generator expressions
...
Add generator expressions that combine and use boolean test results:
$<0:...> = empty string (ignores "...")
$<1:...> = content of "..."
$<AND:?[,?]...> = '1' if all '?' are '1', else '0'
$<OR:?[,?]...> = '0' if all '?' are '0', else '1'
$<NOT:?> = '0' if '?' is '1', else '1'
These will be useful to evaluate (future) boolean query expressions and
condition content on the results. Include tests and documentation.
2012-08-15 11:44:49 -04:00
Brad King
f3477ed88c
Xcode: Set ASM source language in project file ( #13472 )
...
Also teach the Assembler test to build under Xcode.
Suggested-by: Tobias Pape <tobiaspape@gmail.com>
2012-08-15 11:03:57 -04:00
Brad King
7e8471ce7b
Recognize Clang ASM support ( #13473 )
...
Since commit 571dc748
(Recognize Clang C and C++ compilers, 2010-05-17)
we recognize Clang C and C++ support. Add Compiler/Clang-ASM.cmake to
enable use of Clang for ASM too. Also teach Assembler test to try Clang
as an assembler.
Suggested-by: Tobias Pape <tobiaspape@gmail.com>
2012-08-15 09:40:20 -04:00
Kitware Robot
addefc2ae3
CMake Nightly Date Stamp
2012-08-15 00:01:03 -04:00
Rolf Eike Beer
c6fed68ef8
CheckTypeSize: add a test for size of struct members
2012-08-14 21:14:33 +02:00
Rolf Eike Beer
48783b71fb
CheckTypeSize: show in documentation how to get struct member size ( #10579 )
2012-08-14 21:14:33 +02:00
Eric NOULARD
d593cef58f
Enhance DESTDIR documentation. Fixes #0012374 .
2012-08-14 20:15:22 +02:00
Brad King
d269984e53
GetPrerequisites: Mark file_cmd as advanced cache entry
...
This internal implementation detail should not pollute the main
cache view of projects that include GetPrerequisites.
2012-08-14 09:02:08 -04:00
Brad King
cd3bd23266
Merge topic 'cleanup-style'
...
68bc863
Merge branch 'master' into cleanup-style
a05eba5
CMakeVersion.bash: Update sed expression for lower-case 'set'
3c0488d
Fix WarnUnusedUnusedViaUnset test pass/fail regex
6c2c483
Remove trailing TAB from NSIS.template.in
9db3116
Remove CMake-language block-end command arguments
77543bd
Convert CMake-language commands to lower case
7bbaa42
Remove trailing whitespace from most CMake and C/C++ code
be9db98
Merge topic 'watcom-compiler-version'
af42ae4
Watcom: Simplify compiler version detection (#11866 )
2012-08-14 08:31:45 -04:00
Brad King
68bc863d5b
Merge branch 'master' into cleanup-style
...
Conflicts:
Source/CMakeVersion.cmake
2012-08-14 08:27:23 -04:00
Brad King
a05eba57b5
CMakeVersion.bash: Update sed expression for lower-case 'set'
...
Since commit 77543bde
(Convert CMake-language commands to lower case,
2012-08-13) the CMakeVersion.cmake file contains lower-case 'set'
commands. Teach CMakeVersion.bash to replace the lower-case name
instead of the old upper-case 'SET'.
2012-08-14 08:25:51 -04:00
Brad King
3c0488d7d3
Fix WarnUnusedUnusedViaUnset test pass/fail regex
...
After conversion of Modules .cmake files to lower case the
FAIL_REGULAR_EXPRESSION for this test matched warnings in modules other
than the test line itself. Make the pass and fail regular expressions
specific to the file containing the lines they are testing.
2012-08-14 08:06:19 -04:00
Brad King
6c2c483ef9
Remove trailing TAB from NSIS.template.in
...
This was missed by commit 7bbaa428
(Remove trailing whitespace from most
CMake and C/C++ code, 2012-08-13) which only removed trailing spaces,
not TABs.
2012-08-14 08:05:41 -04:00
Kitware Robot
9acb4f118c
CMake Nightly Date Stamp
2012-08-14 00:01:08 -04:00
Kitware Robot
9db3116226
Remove CMake-language block-end command arguments
...
Ancient versions of CMake required else(), endif(), and similar block
termination commands to have arguments matching the command starting the
block. This is no longer the preferred style.
Run the following shell code:
for c in else endif endforeach endfunction endmacro endwhile; do
echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/'
done >convert.sed &&
git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' |
egrep -z -v '^(Utilities/cm|Source/kwsys/)' |
egrep -z -v 'Tests/CMakeTests/While-Endwhile-' |
xargs -0 sed -i -f convert.sed &&
rm convert.sed
2012-08-13 14:19:16 -04:00
Kitware Robot
77543bde41
Convert CMake-language commands to lower case
...
Ancient CMake versions required upper-case commands. Later command
names became case-insensitive. Now the preferred style is lower-case.
Run the following shell code:
cmake --help-command-list |
grep -v "cmake version" |
while read c; do
echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g'
done >convert.sed &&
git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' |
egrep -z -v '^(Utilities/cm|Source/kwsys/)' |
xargs -0 sed -i -f convert.sed &&
rm convert.sed
2012-08-13 14:19:16 -04:00
Kitware Robot
7bbaa4283d
Remove trailing whitespace from most CMake and C/C++ code
...
Our Git commit hooks disallow modification or addition of lines with
trailing whitespace. Wipe out all remnants of trailing whitespace
everywhere except third-party code.
Run the following shell code:
git ls-files -z -- \
bootstrap doxygen.config '*.readme' \
'*.c' '*.cmake' '*.cpp' '*.cxx' \
'*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \
'*.mm' '*.pike' '*.py' '*.txt' '*.vim' |
egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' |
egrep -z -v '^(Modules/CPack\..*\.in)' |
xargs -0 sed -i 's/ \+$//'
2012-08-13 14:18:39 -04:00
Brad King
be9db98946
Merge topic 'watcom-compiler-version'
...
af42ae4
Watcom: Simplify compiler version detection (#11866 )
2012-08-13 14:18:28 -04:00
David Cole
f0295575d7
Merge topic 'xcode-select'
...
e88bae7
Xcode: Run xcode-select to find Xcode version file (#13463 )
2012-08-13 13:28:49 -04:00
David Cole
e0f7d7fe5a
Merge topic 'CPackRPM-fixRelocatablePrefix'
...
822c1ea
Do not include directories which are part of the package install prefix.
2012-08-13 13:28:36 -04:00
David Cole
1f793ab6ba
Merge topic 'fix-typo-13456'
...
67f11cf
FindSelfPackers: fix typo (#13456 )
2012-08-13 13:28:25 -04:00
David Cole
396bc28477
Merge topic 'doc_fixes'
...
76d6c59
Clean up documentation formatting so that it is rendered properly in HTML.
2012-08-13 13:28:16 -04:00
David Cole
c1163632de
Merge topic 'xcode-object-dir'
...
b237dbd
Xcode: Fix object library references in multi-project trees (#13452 )
2012-08-13 13:28:07 -04:00
David Cole
0d28661999
Merge topic 'select-compiler'
...
7e58e5b
Prefer generic system compilers by default for C, C++, and Fortran
796e337
Factor common code out of CMakeDetermine(ASM|C|CXX|Fortran)Compiler
b708f1a
CMakeDetermine(C|CXX)Compiler: Consider Clang compilers
2012-08-13 13:27:57 -04:00
David Cole
4bdbdfbfef
Merge topic 'directory-typo'
...
6c8722f
Fix typo direcotry -> directory (and similar) [#13444 ]
2012-08-13 13:27:48 -04:00
David Cole
92b11383d9
Merge topic 'SelectLibraryConfiguration-multi-lib-per-var2'
...
5797512
SelectLibraryConfiguration: generate correct output when input vars are lists
2012-08-13 13:27:39 -04:00
David Cole
11a9ea35de
Merge topic 'FindOpenSSL-improve'
...
3cfb68d
FindOpenSSL: remove leftover comment
fc798ed
FindOpenSSL: cleanup path hints
c78a7d1
FindOpenSSL: let CMake handle environment variable HINTS
7464519
FindOpenSSL: use SelectLibraryConfigurations
4b793ad
FindOpenSSL: find cross-compiled OpenSSL from MinGW (#13431 )
2012-08-13 13:27:31 -04:00
David Cole
20f56a7eed
Merge topic 'EclipseFixBadLinkedResources'
...
4ea5dc5
Eclipse: fix #13358 : don't create bad linked resources
2012-08-13 13:27:17 -04:00
David Cole
1b9684562b
Merge topic 'EclipseAddSupportForJuno'
...
53cc102
Eclipse: improve (fix ?) version detection on OSX
bcccddc
Eclipse: add support for the 4.2 Juno release (#13367 )
2012-08-13 13:27:07 -04:00
David Cole
85f843a7b4
Merge topic 'mixed-lib-to-lib64'
...
af80da3
remove lib64 Unix paths if the respective lib path is also given
733726e
find_library: Fix mixed lib->lib64 (non-)conversion cases (#13419 )
54add62
find_library: Simplify lib->lib<arch> expansion
6ca2f82
find_library: Refactor lib->lib64 conversion
1fe4b82
find_library: Add test covering lib->lib64 cases
2012-08-13 13:26:57 -04:00
David Cole
e93d9c5c2b
Merge topic 'use_normal_ouput_with_chdir'
...
4ddd3b9
Use OUTPUT_NORMAL instead of OUTPUT_MERGE for cmake -E chdir.
2012-08-13 13:26:48 -04:00
David Cole
e856509093
Merge topic 'release-script-fixes'
...
214589b
Add ability to run as a ctest -S script also
2012-08-13 13:26:39 -04:00
David Cole
bed44c2cc1
Merge topic 'exclude-ExternalProject-test-for-cygwin-release-script'
...
3a17311
Release: Temporarily exclude ExternalProject test on cygwin
2012-08-13 13:26:30 -04:00
Brad King
af42ae4f81
Watcom: Simplify compiler version detection ( #11866 )
...
Since commit c198730b
(Detect Watcom compiler version with its id,
2011-12-07) the CMAKE_(C|CXX)_COMPILER_VERSION variables are set for the
Watcom compiler. Use these in Windows-wcl386.cmake to set the old
WATCOM1* version variables. This avoids using the old EXECUTE_PROCESS
command which failed due to extra quotes anyway.
2012-08-13 08:19:23 -04:00
Kitware Robot
408c04e734
CMake Nightly Date Stamp
2012-08-13 00:01:02 -04:00
Kitware Robot
ee1ee20905
CMake Nightly Date Stamp
2012-08-12 00:01:02 -04:00
Kitware Robot
95e8636711
CMake Nightly Date Stamp
2012-08-11 00:01:02 -04:00