| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
This converts the CMake license to a pure 3-clause OSI-approved BSD
License. We drop the previous license clause requiring modified
versions to be plainly marked. We also update the CMake copyright to
cover the full development time range.
|
|
|
|
|
|
|
|
| |
The try_compile command builds the cmTryCompileExec executable using the
cmTryCompileExec/fast target with Makefile generators in order to save
time since dependencies are not needed. However, in project mode the
command builds an entire source tree that may have dependencies.
Therefore we can use the /fast target approach only in one-source mode.
|
|
|
|
| |
CMAKE_OSX_DEPLOYMENT_TARGET when running TRY_COMPILE
|
|
|
|
| |
file is not found during a core try compile.
|
|
|
|
| |
from the Continuous dashboard test that is failing.
|
| |
|
| |
|
|
|
|
| |
instead of cmake_policy to set the version now that CMP0000 requires it.
|
|
|
|
| |
the current version of CMake, not just 2.6.
|
| |
|
|
|
|
| |
inside it. This has caused infinite loops of builds in some cases, and it is just a waste of time anyway.
|
|
|
|
|
|
|
|
|
| |
compiled output.
Tested with various gcc, XCode, MSVC7, sdcc
For OSX when doing TRY_COMPILE() CMAKE_OSX_ARCHITECTURES is used, if there are different results an error is generated. CMAKE_OSX_ARCHITECTURES can be overwritten for the TRY_COMPILES with CMAKE_TRY_COMPILE_OSX_ARCHITECTURES.
Alex
|
|
|
|
|
|
| |
be used e.g. for getting strings out of it.
Alex
|
|
STYLE: create a new base class cmCoreTryCompile, from which
cmTryCompileCommand and cmTryRunCommand are derived, so there are no public
static functions with lots of arguments anymore
Alex
|