diff options
author | adam <adam> | 2013-05-29 09:59:15 +0000 |
---|---|---|
committer | adam <adam> | 2013-05-29 09:59:15 +0000 |
commit | 9f4e5eeb696bca88d51c14a346777463e1833fc3 (patch) | |
tree | 521ec2647a2ac34d2967f23931c97352d7b2d212 /devel/cmake/patches | |
parent | 2da93493cacc89c16546456839f04438670bf037 (diff) | |
download | pkgsrc-9f4e5eeb696bca88d51c14a346777463e1833fc3.tar.gz |
Changes 2.8.11:
This new release of CMake features the introduction of Target Usage Requirements and a Generator Toolset Selection for Visual Studio and XCode, as well as a variety of other improvements.
With the Target Usage Requirements, developers can now specify target usage requirements for their consumers such as include directories and preprocessor definitions, whereas in previous versions only link dependencies were supported. Additionally, with the target_link_libraries(myexe yourlib), developers can now build myexe sources with requirements specified by yourlib. There are also a new target include directory and target compile definitions commands that offer public, private, and interface options. The detailed discussion on this topic is available on the KDE website.
The new Generator Toolset selection for Visual Studio and XCode inform the IDE which compiler toolchain to use. Other improvements include the introduction of the ExternalData Module and the ability to reference data unambiguously from source tree by the content hash.
Diffstat (limited to 'devel/cmake/patches')
-rw-r--r-- | devel/cmake/patches/patch-Utilities_KWIML_ABI.h.in | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/devel/cmake/patches/patch-Utilities_KWIML_ABI.h.in b/devel/cmake/patches/patch-Utilities_KWIML_ABI.h.in deleted file mode 100644 index bf3dae51f53..00000000000 --- a/devel/cmake/patches/patch-Utilities_KWIML_ABI.h.in +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-Utilities_KWIML_ABI.h.in,v 1.3 2012/10/24 22:42:16 wiz Exp $ - -Add VAX to the list of supported architectures - -http://public.kitware.com/Bug/view.php?id=13605 - ---- Utilities/KWIML/ABI.h.in.orig 2012-08-09 18:15:19.000000000 +0000 -+++ Utilities/KWIML/ABI.h.in -@@ -414,6 +414,10 @@ suppression macro @KWIML@_ABI_NO_VERIFY - #elif defined(__SYSC_ZARCH__) - # define @KWIML@_ABI_ENDIAN_ID @KWIML@_ABI_ENDIAN_ID_BIG - -+/* VAX */ -+#elif defined(__vax__) -+# define @KWIML@_ABI_ENDIAN_ID @KWIML@_ABI_ENDIAN_ID_BIG -+ - /* Unknown CPU */ - #elif !defined(@KWIML@_ABI_NO_ERROR_ENDIAN) - # error "Byte order of target CPU unknown." |