blob: 696cc0872d87b83b7bd0cb31e8e2b9c4e1bd899f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
This file is part of MXE.
See index.html for further information.
Contains ad hoc patches for cross building.
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20M=C3=BCllenhaupt?= <muellni@netlair.de>
Date: Sat, 22 Jun 2013 18:44:18 +1000
Subject: [PATCH] add TryRunResults.cmake
diff --git a/TryRunResults.cmake b/TryRunResults.cmake
new file mode 100644
index 1111111..2222222
--- /dev/null
+++ b/TryRunResults.cmake
@@ -0,0 +1,30 @@
+SET( VTK_TYPE_CHAR_IS_SIGNED
+ "1"
+ CACHE STRING "Result from TRY_RUN" FORCE)
+SET( VTK_ANSI_STREAM_EOF_RESULT
+ "1"
+ CACHE STRING "Result from TRY_RUN" FORCE)
+SET( KWSYS_CHAR_IS_SIGNED
+ "0"
+ CACHE STRING "Result from TRY_RUN" FORCE)
+
+SET( KWSYS_CHAR_IS_SIGNED__TRYRUN_OUTPUT
+ ""
+ CACHE STRING "Output from TRY_RUN" FORCE)
+
+SET( CMAKE_REQUIRE_LARGE_FILE_SUPPORT
+ "0"
+ CACHE STRING "Result from TRY_RUN" FORCE)
+
+SET( CMAKE_REQUIRE_LARGE_FILE_SUPPORT__TRYRUN_OUTPUT
+ ""
+ CACHE STRING "Output from TRY_RUN" FORCE)
+
+SET( KWSYS_LFS_WORKS
+ "0"
+ CACHE STRING "Result from TRY_RUN" FORCE)
+
+SET( KWSYS_LFS_WORKS__TRYRUN_OUTPUT
+ ""
+ CACHE STRING "Output from TRY_RUN" FORCE)
+
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20M=C3=BCllenhaupt?= <muellni@netlair.de>
Date: Thu, 29 Aug 2013 10:19:49 +0200
Subject: [PATCH] strip down native configure to required compile tools
diff --git a/Utilities/EncodeString/module.cmake b/Utilities/EncodeString/module.cmake
index 1111111..2222222 100644
--- a/Utilities/EncodeString/module.cmake
+++ b/Utilities/EncodeString/module.cmake
@@ -1,4 +1,7 @@
vtk_module(vtkUtilitiesEncodeString
+ GROUPS
+ CompileTools
DEPENDS
vtksys
+ vtkCommonCore
EXCLUDE_FROM_WRAPPING)
diff --git a/Utilities/HashSource/module.cmake b/Utilities/HashSource/module.cmake
index 1111111..2222222 100644
--- a/Utilities/HashSource/module.cmake
+++ b/Utilities/HashSource/module.cmake
@@ -1,4 +1,6 @@
vtk_module(vtkUtilitiesHashSource
+ GROUPS
+ CompileTools
DEPENDS
vtksys
EXCLUDE_FROM_WRAPPING
diff --git a/Utilities/ParseOGLExt/module.cmake b/Utilities/ParseOGLExt/module.cmake
index 1111111..2222222 100644
--- a/Utilities/ParseOGLExt/module.cmake
+++ b/Utilities/ParseOGLExt/module.cmake
@@ -1,2 +1,4 @@
vtk_module(vtkParseOGLExt
+ GROUPS
+ CompileTools
EXCLUDE_FROM_WRAPPING)
|