summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'asm-user-override-files'Brad King2014-09-021-0/+18
|\ | | | | | | | | 487f147f Load CMAKE_USER_MAKE_RULES_OVERRIDE[_ASM] for assembler (#15108)
| * Load CMAKE_USER_MAKE_RULES_OVERRIDE[_ASM] for assembler (#15108)Mikhail Nikonov2014-08-271-0/+18
| | | | | | | | This is already done for C, CXX, and Fortran.
* | Merge topic 'vs-windows-apps'Brad King2014-09-0250-19/+2121
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 39fefde2 VS: Add test case for Windows Phone and Windows Store 89da8465 MSVC: Define 'WIN32' for Windows Store and Windows Phone ed7f085f Help: Add notes for topic 'vs-windows-apps' dd11ae8f VS: Do not compile C sources as WinRT (#15100) b8e40538 VS: Mark Windows Phone and Store targets as App Containers 0432f062 VS: Always ignore ole32 on Windows Phone 8.0 e6ff2f8b VS: Generate Windows Metadata for WinRT components ee48f4c7 VS: Generate Windows Phone and Windows Store projects as Unicode cb1aceed VS: Add VS_WINRT_COMPONENT property to enable CompileAsWinRT 401269e4 VS: Handle .pfx files explicitly in generator 23782171 VS: Handle AppxManifest sources explicitly in generator bc373c6d VS: Set Window Phone/Store app type in CMake-generated targets d89b2889 VS: Mark CMake-generated targets as Utility in .vcxproj files 03ad8f28 CMakeDetermineCompilerABI: Link with standard libraries on MSVC
| * | VS: Add test case for Windows Phone and Windows StoreGilles Khouzam2014-09-0231-0/+1387
| | | | | | | | | | | | | | | Add tests to build for each version of each system when the corresponding tools are available.
| * | MSVC: Define 'WIN32' for Windows Store and Windows PhoneGilles Khouzam2014-09-021-0/+1
| | | | | | | | | | | | | | | This was accidentally left out of commit c72f0887 (MSVC: Add default WindowsPhone and WindowsStore compile flags, 2014-07-28).
| * | Help: Add notes for topic 'vs-windows-apps'Brad King2014-09-021-0/+6
| | |
| * | VS: Do not compile C sources as WinRT (#15100)Brad King2014-09-023-4/+15
| | | | | | | | | | | | | | | | | | | | | | | | The MSVC /ZW flag is valid only for C++ sources. Whenever we enable CompileAsWinRT for the whole target, disable it for all C sources. Update the documentation of VS_WINRT_COMPONENT to drop the statement about undefined behavior for non-C++ sources, because it is now defined as expected.
| * | VS: Mark Windows Phone and Store targets as App ContainersGilles Khouzam2014-09-029-3/+554
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add AppContainerApplication to non-UTILITY targets * Generate app manifest and related files if project does not provide them. Place them in a per-target directory to avoid clashes. * Mark WinRT components with WinMDAssembly * Import Windows Phone 8.0 targets in .vcxproj files when necessary, and reference platform.winmd. Inspired-by: Paul Annetts <paul@lightunobscured.com>
| * | VS: Always ignore ole32 on Windows Phone 8.0Gilles Khouzam2014-08-211-0/+7
| | | | | | | | | | | | Inspired-by: Paul Annetts <paul@lightunobscured.com>
| * | VS: Generate Windows Metadata for WinRT componentsGilles Khouzam2014-08-211-0/+27
| | | | | | | | | | | | Inspired-by: Paul Annetts <paul@lightunobscured.com>
| * | VS: Generate Windows Phone and Windows Store projects as UnicodeGilles Khouzam2014-08-211-0/+2
| | |
| * | VS: Add VS_WINRT_COMPONENT property to enable CompileAsWinRTGilles Khouzam2014-08-216-4/+50
| | | | | | | | | | | | | | | | | | | | | | | | Deprecate VS_WINRT_EXTENSIONS and document VS_WINRT_COMPONENT as for VS generators only. Also define _WINRT_DLL in SHARED libraries in order to get a .lib produced. Inspired-by: Paul Annetts <paul@lightunobscured.com>
| * | VS: Handle .pfx files explicitly in generatorGilles Khouzam2014-08-214-0/+46
| | | | | | | | | | | | | | | | | | | | | | | | Teach cmGeneratorTarget to classify .pfx files as package certificate key files. Teach cmVisualStudio10TargetGenerator to write them as PackageCertificateKeyFile in .vcxproj files. Inspired-by: Minmin Gong <minmin.gong@gmail.com>
| * | VS: Handle AppxManifest sources explicitly in generatorGilles Khouzam2014-08-213-5/+21
| | | | | | | | | | | | | | | | | | | | | Teach cmGeneratorTarget to extract .appxmanifest sources separately. Teach cmVisualStudio10TargetGenerator to write them with the AppxManifest tool in .vcxproj files. This will allow us to detect whether the project provides an application manfiest explicitly.
| * | VS: Set Window Phone/Store app type in CMake-generated targetsBrad King2014-08-211-1/+1
| | | | | | | | | | | | | | | | | | | | | Generate the ApplicationType and ApplicationTypeRevision elements in .vcxproj files for CMake-generated targets like 'INSTALL' and 'RUN_TESTS'. This was accidentally left out of commit 709cebde (VS: Generate WindowsPhone and WindowsStore application types, 2014-07-31).
| * | VS: Mark CMake-generated targets as Utility in .vcxproj filesBrad King2014-08-211-1/+1
| | | | | | | | | | | | | | | | | | Targets like 'INSTALL' and 'RUN_TESTS' are Utility targets. Fix the VS >= 10 generator to set this correctly. We already do so for VS < 10.
| * | CMakeDetermineCompilerABI: Link with standard libraries on MSVCBrad King2014-08-211-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In commit v2.8.0~395 (Implicit link info for C, CXX, and Fortran, 2009-07-23) we added a '-DCMAKE_${lang}_STANDARD_LIBRARIES=' flag to the try_compile used to build the ABI detection project. It is needed when detecting the implicit libraries added by the GNU compiler on Windows (MinGW tools) to avoid contaminating the list with standard Windows libraries. However, with MSVC we do not detect such implicit link libraries anyway, and for some target platforms (e.g. Windows Phone) we may need the standard libraries to link the ABI detection executable. Drop the flag when detecting the ABI using MSVC.
* | | CMake Nightly Date StampKitware Robot2014-09-021-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2014-09-011-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2014-08-311-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2014-08-301-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2014-08-291-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2014-08-281-1/+1
| | |
* | | Merge topic 'wxWidgets-cflags'Brad King2014-08-271-2/+5
|\ \ \ | | | | | | | | | | | | | | | | e6fa6e60 UsewxWidgets: CFLAGS are expected to be a string here, not a list.
| * | | UsewxWidgets: CFLAGS are expected to be a string here, not a list.Richard M. Shaw2014-08-221-2/+5
| | | |
* | | | Merge topic 'wxWidgets-paths'Brad King2014-08-271-4/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 33286235 FindwxWidgets: Improve path detection logic when cross-compiling.
| * | | | FindwxWidgets: Improve path detection logic when cross-compiling.Richard M. Shaw2014-08-221-4/+3
| |/ / /
* | | | CMake Nightly Date StampKitware Robot2014-08-271-1/+1
| | | |
* | | | CMake Nightly Date StampKitware Robot2014-08-261-1/+1
| |_|/ |/| |
* | | CMake Nightly Date StampKitware Robot2014-08-251-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2014-08-241-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2014-08-231-1/+1
|/ /
* | Merge topic 'vs-masm'Brad King2014-08-2222-21/+592
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cbd1d42b Help: Add notes for topic 'vs-masm' 0f8522a6 VS: Add MASM support to VS 8 and 9 (#8170, #14984) a43f4400 VS: Move internal MasmEnabled member up to VS 7 generator df3b007d VS: Add test for MASM support e8727449 VS: Populate MASM tool build settings in .vcxproj files 0271a5f9 VS: Manually fix MASM flag table entries 1d662e48 VS: Generate MASM flag tables from MSBuild tool files 4f6940df VS: Fix ASM_MASM support in VS >= 10 d7866c52 ASM_MASM: Fix selection of ml64 0374abdb ASM_MASM: Add preprocessor definitions to compile lines 5b0a46e1 ASM_MASM: Do not require compiler to be a full path 802dbe52 cmLocalVisualStudio7Generator: Rename local 'lang' var
| * | Help: Add notes for topic 'vs-masm'Brad King2014-08-201-0/+5
| | |
| * | VS: Add MASM support to VS 8 and 9 (#8170, #14984)Brad King2014-08-202-1/+55
| | |
| * | VS: Move internal MasmEnabled member up to VS 7 generatorBrad King2014-08-205-14/+13
| | | | | | | | | | | | | | | | | | | | | | | | Move the member from cmGlobalVisualStudio10Generator to cmGlobalVisualStudio7Generator to make it useful for earlier versions of VS. Set the member to true only starting with cmGlobalVisualStudio8Generator since we will not implement MASM support for versions less than VS 8.
| * | VS: Add test for MASM supportBrad King2014-08-205-0/+28
| | | | | | | | | | | | It is now expected to work with VS >= 10 and MSVC >= 13.1.
| * | VS: Populate MASM tool build settings in .vcxproj filesBrad King2014-08-133-0/+99
| | |
| * | VS: Manually fix MASM flag table entriesBrad King2014-08-134-20/+20
| | | | | | | | | | | | Drop '"[value]"' placeholders.
| * | VS: Generate MASM flag tables from MSBuild tool filesBrad King2014-08-134-0/+384
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Run cmparseMSBuildXML.py on masm.xml to generate our flag tables: python cmparseMSBuildXML.py -x ".../MSBuild/Microsoft.Cpp/v4.0/BuildCustomizations/masm.xml" > cmVS10MASMFlagTable.h python cmparseMSBuildXML.py -x ".../MSBuild/Microsoft.Cpp/v4.0/V110/BuildCustomizations/masm.xml" > cmVS11MASMFlagTable.h python cmparseMSBuildXML.py -x ".../MSBuild/Microsoft.Cpp/v4.0/V120/BuildCustomizations/masm.xml" > cmVS12MASMFlagTable.h python cmparseMSBuildXML.py -x ".../MSBuild/Microsoft.Cpp/v4.0/V140/BuildCustomizations/masm.xml" > cmVS14MASMFlagTable.h Fix up the declaration names at the top of each file.
| * | VS: Fix ASM_MASM support in VS >= 10Brad King2014-08-131-1/+1
| | | | | | | | | | | | | | | Fix a typo introduced by commit ce511435 (stringapi: Use strings for the languages, 2014-02-03) to check the language name correctly.
| * | ASM_MASM: Fix selection of ml64Brad King2014-08-131-1/+2
| | | | | | | | | | | | | | | Recognize 64-bit platforms based on the C or CXX architecture or the platform specified with a VS generator name.
| * | ASM_MASM: Add preprocessor definitions to compile linesBrad King2014-08-131-1/+1
| | | | | | | | | | | | | | | The MASM tools (ml, ml64) support -D preprocessor definition flags. Update our compilation rule variable to pass them.
| * | ASM_MASM: Do not require compiler to be a full pathBrad King2014-08-131-1/+2
| | | | | | | | | | | | | | | The compiler detection modules for this language do not yet know how to find the full path to 'ml' or 'ml64', so do not require it.
| * | cmLocalVisualStudio7Generator: Rename local 'lang' varBrad King2014-08-131-3/+3
| | | | | | | | | | | | | | | In the WriteGroup method, rename the 'lang' var to 'ppLang' since it is specifically for the preprocessor definitions language selection.
* | | Merge topic 'FindXerces'Brad King2014-08-223-0/+87
|\ \ \ | | | | | | | | | | | | | | | | 20407006 FindXerces: New module to find Apache Xerces-C++
| * | | FindXerces: New module to find Apache Xerces-C++Roger Leigh2014-08-213-0/+87
| | | |
* | | | Merge topic 'FindIce'Brad King2014-08-223-0/+398
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 050caef3 FindIce: New module to find ZeroC Ice
| * | | | FindIce: New module to find ZeroC IceRoger Leigh2014-08-213-0/+398
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - autodetects Ice on all major platforms - allows building with all supported Visual Studio versions on Windows - autodetects the slice path on most platforms - separately detects the Ice programs, headers, slice files and libraries so that any Ice configuration or installation errors can be accurately reported, making diagnosis of Ice problems simpler
* | | | CMake Nightly Date StampKitware Robot2014-08-221-1/+1
|/ / /