summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* CTestCustom: Suppress scan-build warnings in libuvBrad King2016-09-031-0/+3
| | | | | | | Clang scan-build warns in some expansions of RB_GENERATE_STATIC that it has a "Dereference of null pointer". It also warns that "The left operand of '==' is a garbage value" strangely. Simply suppress these since this is third-party code anyway.
* libuv: Simplify variable initializations to satisfy Clang scan-buildBrad King2016-09-012-10/+4
| | | | | The Clang scan-build tool warns about assignments whose values are never used, so initialize local variables at declaration instead.
* Merge topic 'FindEXPAT-use-PkgConfig'Brad King2016-09-011-2/+6
|\ | | | | | | | | fc695a77 FindEXPAT: use hints from PkgConfig
| * FindEXPAT: use hints from PkgConfigChristoph Junghans2016-08-311-2/+6
| |
* | Merge topic 'FindCUDA-fixes'Brad King2016-09-011-10/+44
|\ \ | | | | | | | | | | | | | | | 900ee0b8 FindCUDA: Allow cuda_compile* macros to be called more than once per directory 6442709b FindCUDA: Fix for broken cuda_compile* commands.
| * | FindCUDA: Allow cuda_compile* macros to be called more than once per directoryStephen Sorley2016-08-311-2/+13
| | | | | | | | | | | | | | | | | | | | | Added a counter as a directory property that gets incremented every time one of the cuda_compile* macros is called. The value of this counter is then added to the phony target name passed to CUDA_WRAP_SRCS. This ensures that every call to one of these macros has its own unique intermediate output directory.
| * | FindCUDA: Fix for broken cuda_compile* commands.Stephen Sorley2016-08-311-9/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The macros CUDA_COMPILE, CUDA_COMPILE_PTX, CUDA_COMPILE_FATBIN, and CUDA_COMPILE_CUBIN were broken by commit 7ded655 (FindCUDA: Take NVCC include directories from target properties, 2016-08-16). This bug is due to the fact that all of these macros call CUDA_WRAP_SRCS with a target name that's not an actual target, causing the new generator expressions to fail. Fix the bug by changing these macros to pass "PHONY" to CUDA_WRAP_SRCS. Now, when CUDA_WRAP_SRCS sees "PHONY", it falls back to the old behavior of populating the include directories and compile definitions from directory properties, instead of using target generator expressions.
* | | Merge topic 'install-directory-genex-fix'Brad King2016-09-012-1/+13
|\ \ \ | | | | | | | | | | | | | | | | 3bd55dba install: Fix evaluation of leading generator expressions in DIRECTORY
| * | | install: Fix evaluation of leading generator expressions in DIRECTORYYves Frederix2016-08-312-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Since commit v3.5.0-rc1~58^2 (install: Allow generator expressions in DIRECTORY, 2016-01-12) we accidentally treat leading generator expressions as relative paths even though they may evaluate to absolute paths. Defer the conversion to an absolute path until after evaluation.
* | | | CMake Nightly Date StampKitware Robot2016-09-011-1/+1
| |/ / |/| |
* | | Merge topic 'doc-XCODE-variable'Brad King2016-08-312-0/+5
|\ \ \ | |/ / |/| | | | | | | | 3e8615ef Document XCODE variable
| * | Document XCODE variableRuslan Baratov2016-08-312-0/+5
| | |
* | | Merge topic '16101-xcode-fix-directory-exclude-from-all'Brad King2016-08-319-11/+41
|\ \ \ | | | | | | | | | | | | | | | | df32e564 Xcode: Add targets marked as EXCLUDE_FROM_ALL to project (#16101)
| * | | Xcode: Add targets marked as EXCLUDE_FROM_ALL to project (#16101)Gregor Jasny2016-08-319-11/+41
| | | |
* | | | Merge topic 'FindOpenSSL-new-windows-names'Brad King2016-08-311-0/+17
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | ed1758f8 FindOpenSSL: Fix detection of OpenSSL 1.1 Win32/64
| * | | | FindOpenSSL: Fix detection of OpenSSL 1.1 Win32/64Alexis Murzeau2016-08-301-0/+17
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since OpenSSL 1.1.0, Windows binaries are libcrypto and libssl instead of the old names libeay32 and ssleay32. When using MSVC, FindOpenSSL was searching for the old lib names only so this add the new names to be able to find OpenSSL 1.1.0 libraries. For example, the files in lib directory of OpenSSL 1.1.0 Win64 : - libcrypto.lib - libssl.lib - VC/libcrypto64MD.lib - VC/libcrypto64MDd.lib - VC/libcrypto64MT.lib - VC/libcrypto64MTd.lib - VC/libssl64MD.lib - VC/libssl64MDd.lib - VC/libssl64MT.lib - VC/libssl64MTd.lib 32 bits OpenSSL has the same files with "32" instead of "64" for files in VC directory. MinGW still works and use lib/libcrypto.lib and lib/libssl.lib. This patch also add libssl and libcrypto for other windows compilers too (like Intel).
* | | | Merge topic 'fortran-macOS-sysroot'Brad King2016-08-311-0/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | d6f96207 Fortran: Use -isysroot and -mmacosx-version-min= on macOS if available
| * | | | Fortran: Use -isysroot and -mmacosx-version-min= on macOS if availableBrad King2016-08-301-0/+2
| |/ / / | | | | | | | | | | | | Closes: #16265
* | | | Merge topic 'FindMatlab-additional-components'Brad King2016-08-313-20/+47
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | bf09271b FindMatlab: adding handling of component "MAT"
| * | | | FindMatlab: adding handling of component "MAT"Raffi Enficiaud2016-08-303-20/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - documentation - test - cosmetic changes
* | | | | Merge topic 'syntax-unexpected-eof'Brad King2016-08-315-2/+10
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 1dda2ec5 Improve error message on unexpected end of file
| * | | | | Improve error message on unexpected end of fileBrad King2016-08-305-2/+10
| | |/ / / | |/| | | | | | | | | | | | | Suggested-by: Stephen Kelly <steveire@gmail.com>
* | | | | Merge topic 'import-libuv'Brad King2016-08-31112-1/+48235
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 39ac889d cmake: Add trivial usage of libuv 7cf369fe Do not build libuv on HP-UX 075cae51 Do not build libuv on SPARC 9a53af40 Do not build libuv on Cygwin 219f7411 Do not build libuv on Mac OS X 10.4 and lower 8a5beef3 Add option to build CMake against a system libuv e56aa462 FindLibUV: Add module to find libuv package 551d5aed libuv: Fix unused variable warning in uv_loop_close f4f8074b libuv: Avoid including macOS CoreServices header globally a63aaaed libuv: Always include our own header first 9130b53a libuv: Conditionally declare Windows APIs for VS 2008 and below b52afa46 libuv: Fix anonymous union syntax 05dbc204 libuv: Fix Windows API function typedef syntax 75139374 libuv: Install LICENSE file with CMake documentation 95dcc4e4 libuv: Disable warnings to avoid changing 3rd party code 13b7e758 libuv: Build the library within CMake ...
| * | | | | cmake: Add trivial usage of libuvBrad King2016-08-311-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will serve to make sure cmake actually compiles and links against libuv.
| * | | | | Do not build libuv on HP-UXBrad King2016-08-311-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | Some work may be needed to port to HP-UX.
| * | | | | Do not build libuv on SPARCBrad King2016-08-311-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | Some work may be needed to port to SPARC with Solaris and Linux.
| * | | | | Do not build libuv on CygwinBrad King2016-08-311-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently libuv does not support Cygwin (see libuv issue 832) in part due to lack of pthread APIs: https://cygwin.com/cygwin-api/std-notimpl.html
| * | | | | Do not build libuv on Mac OS X 10.4 and lowerBrad King2016-08-311-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It needs APIs that have been available only since 10.5. Also check that the CoreServices header can be included.
| * | | | | Add option to build CMake against a system libuvBrad King2016-08-313-4/+25
| | | | | | | | | | | | | | | | | | | | | | | | Create a CMAKE_USE_SYSTEM_LIBUV option.
| * | | | | FindLibUV: Add module to find libuv packageBrad King2016-08-315-0/+169
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add it to a private source directory that is not installed so that we can use it for building CMake itself. This will allow it to mature before being distributed publicly.
| * | | | | libuv: Fix unused variable warning in uv_loop_closeBrad King2016-08-311-0/+2
| | | | | |
| * | | | | libuv: Avoid including macOS CoreServices header globallyBrad King2016-08-311-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We only need the availability macros in `unix/internal.h`. We already include CoreServices where needed in implementation files.
| * | | | | libuv: Always include our own header firstBrad King2016-08-312-6/+6
| | | | | |
| * | | | | libuv: Conditionally declare Windows APIs for VS 2008 and belowBrad King2016-08-313-2/+23
| | | | | |
| * | | | | libuv: Fix anonymous union syntaxBrad King2016-08-311-2/+2
| | | | | |
| * | | | | libuv: Fix Windows API function typedef syntaxBrad King2016-08-311-5/+5
| | | | | |
| * | | | | libuv: Install LICENSE file with CMake documentationBrad King2016-08-311-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we install using the bundled libuv source, notify users of its license terms.
| * | | | | libuv: Disable warnings to avoid changing 3rd party codeBrad King2016-08-312-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add '-w' or equivalent flag on compilers supporting it. Tell MSVC to use its lowest warning level inside libuv sources.
| * | | | | libuv: Build the library within CMakeBrad King2016-08-316-0/+253
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Take logic from upstream `Makefile.am` and `configure.ac` to build libuv sources. Update `uv.h` to include KWSys Large File Support configuration so that consistent stream libraries are used (on AIX with XL). Add a `cm_uv.h` header to include the CMake-provided copy of the `uv.h` header from CMake sources.
| * | | | | Merge branch 'upstream-libuv' into import-libuvBrad King2016-08-3199-0/+47701
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream-libuv: libuv 2016-08-30 (897738b1)
| | * | | | | libuv 2016-08-30 (897738b1)libuv upstream2016-08-3199-0/+47701
| | / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Code extracted from: https://github.com/libuv/libuv.git at commit 897738b160cd5950503a96c9fd5b1e9aab92b0ff (v1.x).
| * | | | | Add script to update libuv from upstreamBrad King2016-08-311-0/+26
| | | | | |
* | | | | | Merge topic 'drop-linux-i386-binary'Brad King2016-08-314-28/+5
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | b82d027b Utilities/Release: Drop Linux 32-bit binary
| * | | | | Utilities/Release: Drop Linux 32-bit binaryBrad King2016-08-304-28/+5
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | The Linux distro we've been using for this is so old that it limits our ability to import newer third-party software. Until a new machine can be configured to provide this binary we can simply drop it. Users will still be able to build from source or use a distro-provided version.
* | | | | CMake Nightly Date StampKitware Robot2016-08-311-1/+1
|/ / / /
* | | | Merge topic 'cleanup-Convert'Brad King2016-08-3025-384/+343
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4332131d Convert: Make variables a bit more clear 5aca066c Convert: Remove UNCHANGED enum value 146bf926 Convert: Remove 'FULL' conversion 58ba87f8 Convert: Replace Convert(FULL) with equivalent e80314d7 Ninja: Replace ternary with if() 563ac22a Convert: Replace trivial conversion with new method 08be47cf Convert: Replace UNCHANGED conversions with new API call 564d3a1d Convert: Extract ConvertToRelativePath from Convert() 95a659f1 Convert: Replace FULL conversions with equivalent a8c7ccb1 VS: Replace FULL/UNCHANGED conversion with equivalent 5ad25ef4 Convert: Remove NONE conversion ac463841 Convert: Replace uses of Convert(NONE) 998d9ee9 VS: Replace variable with an if() ee49f006 Makefiles: Replace ternaries with if()s 51f7dcb0 Makefiles: Inline MakeLauncher into only caller ba4ba7c3 Makefiles: Simplify MakeLauncher return value ...
| * | | | Convert: Make variables a bit more clearStephen Kelly2016-08-271-5/+5
| | | | |
| * | | | Convert: Remove UNCHANGED enum valueStephen Kelly2016-08-272-5/+4
| | | | | | | | | | | | | | | | | | | | It is no longer used.
| * | | | Convert: Remove 'FULL' conversionStephen Kelly2016-08-272-4/+0
| | | | | | | | | | | | | | | | | | | | It is no longer used.
| * | | | Convert: Replace Convert(FULL) with equivalentStephen Kelly2016-08-277-38/+57
| | | | | | | | | | | | | | | | | | | | | | | | | This is more explicit than funnelling everything through the Convert method.