Eric NOULARD
b813f863e6
CPack fix compile error on VS70 and avoid KWStyle warnings
2011-03-04 22:57:37 +01:00
Eric NOULARD
dc9965f9a0
CPackRPM do not run test if build dir contains space
2011-03-04 22:17:10 +01:00
Brad King
b3ce4200dc
Do not bother enabling C++ in Assembler test
...
This test needs only the C compiler and ASM compiler so do not enable
the C++ compiler.
2011-03-04 09:17:30 -05:00
Brad King
80f6a344fc
Teach Assembler test to generate main.s at build time
...
Use a custom command to generate the assembly source file at build time.
Also set CMAKE_VERBOSE_MAKEFILE so the test output contains all the
build rules. These two changes will show the entire .c -> .s -> .o and
final link commands in the test output.
2011-03-04 09:08:18 -05:00
Brad King
1dafa7498f
Fix Assembler test to parse C flags string before using
...
Commit 1f6c6b1c
(use CMAKE_C_FLAGS when generating the assembler file,
2011-03-03) added use of CMAKE_C_FLAGS to the assembler generation step.
However, this variable is meant for direct substitution into a shell
command line so we need to parse it to separate the arguments first.
2011-03-04 08:59:56 -05:00
Brad King
077954d4cb
Test static linking with LINK_SEARCH_START_STATIC
...
Add "LinkStatic" test that links a static executable against "libm.a".
Pass both "/usr/lib/libm.a" and "-lm" to target_link_libraries to
trigger the link type logic for both cases. If CMake incorrectly
switches the link type to shared for "-lm" then the link will fail.
2011-03-04 08:37:57 -05:00
KWSys Robot
ed1cd2daf6
KWSys Nightly Date Stamp
2011-03-04 00:12:14 -05:00
Brad King
5abfb57184
Add target property LINK_SEARCH_START_STATIC to aid static linking
...
Commit afd7d4ca
(Add target property LINK_SEARCH_END_STATIC, 2008-01-31)
defined a property to ensure that static runtime libraries get selected.
Add a property to specify that all libraries whose type is unknown, such
as "-lm", should be assumed static. Furthermore it assumes that an
option such as "-static" is also used so that no initial -Bstatic is
needed.
2011-03-03 17:12:32 -05:00
Alex Neundorf
4139a734fa
-only enable the asm test for the Intel compiler if we are under UNIX
...
...have to find out how to generate assembler with icl.exe
Alex
2011-03-03 23:02:12 +01:00
Alex Neundorf
1f6c6b1cc2
-use CMAKE_C_FLAGS when generating the assembler file
...
Alex
2011-03-03 22:56:57 +01:00
Eric NOULARD
77333a92c2
CPack more robust way to collect files belonging to a component
2011-03-03 22:43:31 +01:00
Eric NOULARD
fe530ff5e9
CPackArchive package all components specified in CPACK_COMPONENTS_ALL
...
When asking for group packaging the components not belonging to
any group should be packaged separately.
2011-03-03 21:19:13 +01:00
Eric NOULARD
e4d4dfc6ef
CPackRPM activate CPackRPM test on Linux systems where rpmbuild is found
2011-03-03 20:45:43 +01:00
KWSys Robot
cbb5ae60be
KWSys Nightly Date Stamp
2011-03-03 00:12:15 -05:00
Brad King
d0f71e2545
Add ASM platform information for HP compiler on HP
...
Among other flags this sets RPATH flags correctly so that CMake knows
how to treat CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH for the ASM language.
2011-03-02 17:49:17 -05:00
Brad King
bd580be526
Merge branch 'hp-compiler-info' into ReworkedAsmSupport
2011-03-02 17:40:55 -05:00
Brad King
5f0a25955f
Factor HP compiler flags into per-platform/per-compiler files
...
Move HP flags out of Platform/HP-UX.cmake into platform-specific
compiler information files "Platform/HP-UX-HP-<lang>.cmake". Factor
common values into "Platform/HP-UX-HP.cmake" and load it from the
per-language files.
2011-03-02 17:24:36 -05:00
Brad King
a0bab7ae69
Add ASM platform information for XL compiler on AIX
...
Among other flags this sets RPATH flags correctly so that CMake knows
how to treat CMAKE_PLATFORM_REQUIRED_RUNTIME_PATH for the ASM language.
2011-03-02 13:48:04 -05:00
Brad King
c03b610c0a
Merge branch 'aix-xl-platform-info' into ReworkedAsmSupport
2011-03-02 13:47:11 -05:00
Brad King
c623008376
Initialize ASM rpath flags for executables with those for shared libs
...
Since the flags for executables are almost always the same as those for
shared libraries each language information file just uses the latter for
the former by default. This reduces duplication in the compiler and
platform flag information files.
2011-03-02 13:44:13 -05:00
Brad King
d30dcf18b9
Move RPATH flags to AIX per-compiler information files
...
Move RPATH flags out of Platform/AIX.cmake into platform-specific
compiler information files Platform/AIX-XL and Platform/AIX-GNU.
The flags need to be set for each compiler of each language.
2011-03-02 11:21:54 -05:00
Brad King
89ea7a3d3c
Factor AIX and XL compiler flags into common module
...
Factor duplicate flag information from Platform/AIX-XL-*.cmake into
Platform/AIX-XL.cmake and load it from the original files.
2011-03-02 11:20:50 -05:00
Alex Neundorf
17c658f819
Add support for the Intel compiler used for ASM under Windows
...
Alex
2011-03-02 16:46:25 +01:00
KWSys Robot
f72cc88c65
KWSys Nightly Date Stamp
2011-03-02 00:12:13 -05:00
Alex Neundorf
4258b24134
Add more regex for gcc, always print the ASM compiler ID
...
Now gcc is also recognized via "Free Software Foundation"
Alex
2011-03-01 22:58:26 +01:00
Brad King
fa10a67d09
Remove unused CMAKE_BACKWARDS_COMPATIBILITY mark
...
CMake itself has no calls to cmake_minimum_required with VERSION < 2.6
so this cache variable does not appear at all.
2011-03-01 16:19:53 -05:00
Alex Neundorf
9071b8b87f
Add temporary debug output for compiler ID detection for ASM
...
Alex
2011-03-01 21:41:02 +01:00
Brad King
32f18c94e1
KWSys: Require at least CMake 2.6.3
...
Remove code left for supporting earlier CMake versions.
2011-03-01 15:40:03 -05:00
Alex Neundorf
48f7199df0
It's ELSEIF(), not ELSIF()
...
Alex
2011-03-01 21:39:19 +01:00
Brad King
9a7c6a3cc4
Merge topic 'require-cmake-2.6.3'
...
c3e452e
Require at least CMake 2.6.3 to build current CMake
2011-03-01 15:30:38 -05:00
Brad King
bb745612bc
Merge topic 'doc-typo-fixes'
...
7c5e412
Documentation: Fix a few typos (#11883 )
2011-03-01 15:30:32 -05:00
Brad King
1eca67e12d
Merge topic 'fix-11286-add-file-upload'
...
61a83f9
Fix KWStyle line too long error (#11286 )
963bebc
Implement file(UPLOAD (#11286 )
2011-03-01 15:30:28 -05:00
Brad King
0ac35012f4
Merge topic 'libarchive-rm-windows-build'
...
fabdf7a
libarchive: Remove unused build/windows directory (#11885 )
2011-03-01 15:30:25 -05:00
Brad King
79037a818e
Merge topic 'qt4-setversion-regression-43cb9b8'
...
6b9bc54
Fix regression in 43cb9b8
.
2011-03-01 15:30:17 -05:00
Brad King
b5b4aa2f71
Merge topic 'CPack-ChangeComponentNamingScheme'
...
3fb89cf
CPack remove previously CPack generated files (if any) before running CPack
f2ab270
CPack fix KWStyle warning
4deb308
CPack Authorize DISPLAY_NAME usage in component package
8c450f6
CPack remove "-ALL" suffix for ALL-IN-ONE packages
2011-03-01 15:30:14 -05:00
Brad King
c55ce31c6e
Merge topic 'CPackRPM-AvoidSpaceInName-Fixbug9932'
...
5b4cbdb
CPackRPM Replace space in some CPACK_ vars (Fix bug 9932)
2011-03-01 15:30:10 -05:00
Brad King
c34b0eac25
Merge topic 'EclipseLinkedResourcesToSubProjects2'
...
e8a97e0
Eclipse projects: created one linked resource for each subproject
2011-03-01 15:30:05 -05:00
Alex Neundorf
d103c751fa
Fix bad comparison in the detect assembler-code
...
(there was a if("${CMAKE_C_COMPILER}") instead of if(CMAKE_C_COMPILER) )
Alex
2011-03-01 21:28:54 +01:00
Alex Neundorf
20fe0beb7e
Only try assembler support for Makefile-based generators
...
Alex
2011-03-01 21:19:39 +01:00
KWSys Robot
26b9dfb722
KWSys Nightly Date Stamp
2011-03-01 00:11:00 -05:00
Brad King
11431c67c6
GNUInstallDirs: Simplify and clarify documentation
2011-02-28 15:15:01 -05:00
Nikita Krupen'ko
a262fe0917
Add GNUInstallDirs module to define GNU layout ( #3976 )
...
Provide CMAKE_INSTALL_* variables to help install files according
to the GNU standard layout:
http://www.gnu.org/prep/standards/html_node/Directory-Variables.html
2011-02-28 15:15:01 -05:00
David Cole
61a83f955a
Fix KWStyle line too long error ( #11286 )
2011-02-28 10:47:23 -05:00
KWSys Robot
2465b5e4f5
KWSys Nightly Date Stamp
2011-02-28 00:12:10 -05:00
KWSys Robot
ab02be50b4
KWSys Nightly Date Stamp
2011-02-27 00:12:12 -05:00
KWSys Robot
2f690ab8cb
KWSys Nightly Date Stamp
2011-02-26 00:10:08 -05:00
David Cole
963bebcc17
Implement file(UPLOAD ( #11286 )
...
Including documentation and testing, of course.
2011-02-25 17:26:34 -05:00
Eric NOULARD
5b4cbdb45e
CPackRPM Replace space in some CPACK_ vars (Fix bug 9932)
2011-02-25 16:47:11 +01:00
KWSys Robot
aa1ab6441b
KWSys Nightly Date Stamp
2011-02-25 00:12:14 -05:00
Brad King
c3e452e944
Require at least CMake 2.6.3 to build current CMake
...
Remove some cruft left for supporting builds with CMake 2.4.
2011-02-24 15:14:08 -05:00