summaryrefslogtreecommitdiff
path: root/Templates
Commit message (Collapse)AuthorAgeFilesLines
* Utilities/Release: Drop Cygwin binaryBrad King2016-09-121-103/+0
| | | | | Cygwin has packaged CMake independently of upstream for a long time. See its [cygport](https://github.com/cygwinports/cmake).
* create_test_sourcelist: Use safer strncpy instead of strcpySylvain Joubert2016-08-251-4/+6
| | | | | Clang-tidy advises to use a safer function in place of strcpy. This should avoid such warnings in user build using clang-tidy.
* Drop unnecessary LSRequiresCarbon reference from Info.plist filesSean McBride2016-03-181-2/+0
| | | | | LSRequiresCarbon is long since unnecessary. It refers to requiring Carbon as opposed to Classic (OS 9 emulation).
* Drop Visual Studio 6 generatorBrad King2016-03-0910-847/+0
| | | | | | This generator has been deprecated since CMake 3.3. Remove it. Update documentation, modules, and tests to drop content specific to this generator.
* VS: Add support for Windows 10 Universal (Store) ApplicationsGilles Khouzam2015-10-051-0/+0
| | | | | | | | | | | | | | | | Teach the VS 2015 generator to support WindowsStore 10.0 applications. Add target properties to customize them: * VS_WINDOWS_TARGET_PLATFORM_MIN_VERSION: Specifies the minimum version of the OS that the project can target. * VS_DESKTOP_EXTENSIONS_VERSION, VS_MOBILE_EXTENSIONS_VERSIONS, VS_IOT_EXTENSIONS_VERSION: Add a reference to the version of the SDK specified to the target allowing to target the extended functionality in a universal project. * VS_IOT_STARTUP_TASK: Specifies that the target should be built as an IOT continuous background task.
* Replace http://www.cmake.org URLs with https://cmake.orgBrad King2015-09-252-2/+2
| | | | | | | The latter is now the preferred URL for visiting cmake.org with a browser. Convert using the shell code: git ls-files -z | xargs -0 sed -i 's|http://www\.cmake|https://cmake|g'
* VS: Mark Windows Phone and Store targets as App ContainersGilles Khouzam2014-09-026-0/+0
| | | | | | | | | | | * 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>
* create_test_sourcelist: Suppress MSVC warnings in test driver (#15066)Brad King2014-08-071-0/+4
| | | | Suggested-by: Ken Moreland <kmorel@sandia.gov>
* Add an "installed file" property scopeNils Gladitz2014-05-281-0/+8
| | | | | | | Teach set_property and get_property an "INSTALL" property type to be associated with install-tree file paths. Make the properties available to CPack for use during packaging. Add a "prop_inst" Sphinx domain object type for documentation of such properties.
* create_test_sourcelist: Initialize variable at declarationSean McBride2014-03-311-2/+1
| | | | Clang -Wconditional-uninitialized warns otherwise.
* create_test_sourcelist: Fix linkage in generated test driver codeSean McBride2013-11-121-2/+2
| | | | Mark private function/global with static linkage.
* TestDriver.cxx.in: Untrusted array index read.Matt McCormick2013-10-161-0/+7
| | | | | | | | | | | | | | As reported by Coverity Scan, if the configured file contains a #include, Untrusted array index read The array index could be controlled by an attacker, leading to reads outside the bounds of the array. In main: Read from array at index computed using an unscrutinized value from an untrusted source (CWE-129) CID 1081283 (#1 of 1): Untrusted array index read (TAINTED_SCALAR) 25. tainted_data: Using tainted variable "testToRun" as an index into an array "cmakeGeneratedFunctionMapEntries".
* Fix config-specific INCLUDE_DIRECTORIES in multi-config generatorsStephen Kelly2012-10-174-33/+33
| | | | | | | | Commit 08cb4fa4 (Process generator expressions in the INCLUDE_DIRECTORIES property, 2012-09-18) contained an incorrect assumption that CMAKE_BUILD_TYPE was set on the makefile for each generated configuration in multi-config generators. Fix that by making the GetIncludeDirectories API depend on the config.
* Convert CMake-language commands to lower caseKitware Robot2012-08-132-16/+16
| | | | | | | | | | | | | | | | | 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
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-133-11/+11
| | | | | | | | | | | | | | | | | 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/ \+$//'
* Update CPackConfig template.Eric NOULARD2012-02-251-25/+8
| | | | | | Remove variable documentation from the template in order to avoid multiple location for doc update. Users can now retrieve CPACK_xxx variable documentation from the command line.
* CPack fix template tooEric NOULARD2011-09-091-1/+1
|
* Add STATIC_LIBRARY_FLAGS_<CONFIG> property (#10768)Brad King2010-05-281-4/+4
| | | | This is a per-configuration version of STATIC_LIBRARY_FLAGS.
* Use per-config output dir in VS 6 templatesBrad King2009-10-284-32/+32
| | | | | | | This commit removes use of configuration-less cmTarget::GetDirectory() by the VS 6 generator (except for compatibility with user templates). We replace OUTPUT_DIRECTORY_<CONFIG> tokens in the templates using the per-configuration result of cmTarget::GetDirectory(config).
* Add '#!/bin/sh' to cygwin-package.shBrad King2009-10-051-0/+2
| | | | | | | This commit adds '#!/bin/sh' to the top of the cygwin-package.sh.in script. All executable interpreted scripts should have this directive. Patch from Modestas Vainius. See issue #9659.
* Fix Windows GUI implib and image version in VS 6Brad King2009-09-251-8/+8
| | | | | | | | | | | | | | These commits: Adding image version number (major.minor) property to windows binaries. Added support for import libraries created by executable and module targets. added content to Templates/EXEHeader.dsptemplate that should also have been added to Templates/EXEWinHeader.dsptemplate for the VS6 generator. This commit corrects the error. See issue #9586.
* ENH: Install all Modules and TemplatesBrad King2009-07-241-6/+0
| | | | | | | This removes the file-wise installation rules for Modules and Templates and instead installs the whole directories. This approach is much less error-prone. The old approach was left from before CMake had the install(DIRECTORY) command.
* BUG: Avoid cmTarget::GetDirectory for utilitiesBrad King2009-07-031-4/+0
| | | | | | | Since utility targets have no main output files like executables or libraries, they do not define an output directory. This removes a call to cmTarget::GetDirectory from cmLocalVisualStudio{6,7}Generator for such targets.
* COMP: Don't emit old style cast warning when configured as C++ but still ↵David Cole2008-12-091-2/+14
| | | | allow being configured as C. Thanks to Monsieur Francois Bertel for the patch.
* BUG: fix for rc and vs6Bill Hoffman2008-12-034-0/+32
|
* BUG: the return value of scanf should not be ignoredAmitha Perera2008-11-251-1/+5
|
* ENH: fix failing testsBill Hoffman2008-09-101-4/+4
|
* BUG: fix bug OUTPUT_LIBNAME_EXPORTS done differently nowBill Hoffman2008-09-102-11/+11
|
* BUG: fix empty /D option for vs6, fix for 7580Bill Hoffman2008-09-091-4/+4
|
* ENH: Add code to support calling the VS reload macro from Visual Studio 7.1 ↵David Cole2008-02-151-0/+0
| | | | and 9.0 in addition to 8.0 sp1... Make new macros file with VS 7.1 so that it can be read by 7.1 and later. VS 7.1 does not appear to run the macros while a build is in progress, but does not return any errors either, so for now, the reload macro is not called when using 7.1. If I can figure out how to get 7.1 to execute the macro, I will uncomment the code in cmGlobalVisualStudio71Generator::GetUserMacrosDirectory() to activate executing the macros in VS 7.1, too.
* BUG: Install the vsmacros file.David Cole2007-11-211-1/+1
|
* ENH: Added StopBuild macro.Brad King2007-11-191-0/+0
|
* ENH: Add ability to call Visual Studio macros from CMake. Add a CMake Visual ↵David Cole2007-11-161-0/+0
| | | | Studio macro to reload a solution file automatically if CMake makes changes to .sln files or .vcproj files. Add code to call the macro automatically for any running Visual Studio instances with the .sln file open at the end of the Visual Studio Generate call. Only call the macro if some .sln or .vcproj file changed during Generate. Also, add handling for REG_EXPAND_SZ type to SystemTools::ReadRegistryValue - returned string has environment variable references expanded.
* ENH: Removed dependency on Templates/CMakeWindowsSystemConfig.cmake which is ↵Brad King2007-11-091-81/+0
| | | | no longer used. Also removed the file itself.
* ENH: add package script for cmake projectBill Hoffman2007-10-291-0/+101
|
* ENH: now target names can be used in add_custom_command() andAlexander Neundorf2007-05-095-20/+20
| | | | | | | | | | add_custom_target() as COMMAND, and cmake will recognize them and replace them with the actual output path of these executables. Also the dependency will be added automatically. Test included. ENH: moved TraceVSDependencies() to the end of GlobalGenerator::Configure(), so it is done now in one central place Alex
* ENH: Added support for import libraries created by executable and module ↵Brad King2007-03-191-4/+4
| | | | targets. The module import libraries should never be used but some windows compilers always create them for .dll files since there is no distinction from shared libraries on that platform. The executable import libraries may be used to create modules that when loaded bind to symbols from the executables. This is an enhancement related to bug#4210 though not requested by it explicitly.
* ENH: Implemented use of cmTarget::GetDirectory() in Visual Studio 6 ↵Brad King2007-03-095-40/+40
| | | | generator. This is an incremental fix for bug#4210.
* ENH: Adding image version number (major.minor) property to windows binaries. ↵Brad King2006-10-162-8/+8
| | | | Default is 0.0, but the VERSION target property may change the value. Windows now has first-class support for dll and exe versioning. This addresses bug#1219.
* ENH: Add template of ctest scriptAndy Cedilnik2006-04-281-0/+33
|
* ENH: Simplify the generic instructionsAndy Cedilnik2006-04-203-81/+5
|
* BUG: VS6 generator now uses ComputeLinkInformation just like all other ↵Brad King2006-04-193-22/+15
| | | | generators.
* ENH: Updated VS6 generator to use target.GetFullName() to compute target ↵Brad King2006-04-184-12/+16
| | | | file names.
* ENH: Start adding support for packaging component and to package into a ↵Andy Cedilnik2006-04-141-1/+4
| | | | subdirectory
* ENH: Install cpack filesAndy Cedilnik2006-03-011-0/+1
|
* ENH: Add resource files for PackageMakerAndy Cedilnik2006-02-282-0/+17
|
* ENH: Add generic instructionsAndy Cedilnik2006-02-281-0/+70
|
* ENH: Several packaging issues. Allow random variables to be passed to cpack ↵Andy Cedilnik2006-02-271-19/+23
| | | | (anything starting with CPACK_, add preinstall to the list of dependencies for package, fix typos
* ENH: Several NSIS featuresAndy Cedilnik2006-02-231-1/+2
|
* ENH: Fix iconsAndy Cedilnik2006-02-161-1/+1
|