-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
2572 lines (2335 loc) · 111 KB
/
CMakeLists.txt
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#*****************************************************************************
#
# Copyright (c) 2000 - 2013, Lawrence Livermore National Security, LLC
# Produced at the Lawrence Livermore National Laboratory
# LLNL-CODE-442911
# All rights reserved.
#
# This file is part of VisIt. For details, see https://visit.llnl.gov/. The
# full copyright notice is contained in the file COPYRIGHT located at the root
# of the VisIt distribution or at http://www.llnl.gov/visit/copyright.html.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# - Redistributions of source code must retain the above copyright notice,
# this list of conditions and the disclaimer below.
# - Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the disclaimer (as noted below) in the
# documentation and/or other materials provided with the distribution.
# - Neither the name of the LLNS/LLNL nor the names of its contributors may
# be used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY,
# LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
# DAMAGE.
#
# Modifications:
#
# Mark C. Miller, Wed Jan 13 18:30:38 PST 2010
# Added logic to ensure FORCE_ITAPS_REGEN is never cached in an ON state.
#
# Mark C. Miller, Thu Jan 14 10:36:49 PST 2010
# Undid above change as it turns out the value gets cached regardless of
# an SET() command here. This was not observed in earlier tests because
# I was ctrl-C'ing after the cmake process had past the point I was testing.
#
# Mark C. Miller, Thu Jan 14 12:01:48 PST 2010
# Added -D_LARGEFILE64_SOURCE to definitions for UNIX systems. This could
# be a bit too global of a context in which to set it. We'll see. I also
# added logic to set CMAKE_REQUIRED_DEFINITIONS prior to checking size
# of off64_t. In theory, we might need to set CMAKE_REQUIRED_INCLUDES
# too but that was not required on the systems I tested.
#
# David M. Camp, Th Jan 14 11:50:00 PST 2010
# Added new function ADD_TARGET_DEFINITIONS to add defines to targets.
# This was needed for the plots to define ENGINE only for the engine build.
#
# Gunther H. Weber, Thu Jan 28 14:33:36 PST 2010
# Added hack/workaround that ensures that the static MPI libraries get added
# to the end of the link line. In essence, we add a dummy/empty library
# that has the MPI libraries as dependencies. This libary is added to the
# end of the link line of parallel executables. Doing so ensures that cmake
# will add the depencies of this dummy library, i.e., the MPI libraries, to
# the end of the link line.
#
# Gunther H. Weber, Fri Jan 29 10:42:11 PST 2010
# Added a new option that supports setting the rpath relative to the
# executable location. The purpose of this is to make VisIt not depend on
# a properly set LD_LIBRARY_PATH as some MPI variants do not pass
# environment variables.
#
# Kathleen Bonnell, Wed Feb 3 11:28:41 PST 2010
# Encapsulated VISIT_INSTALL_x_PLUGINS into one Macro that accepts a
# type parameter. Changed VISIT_THIRDPARTY_OPTION into two macros that
# set a PATH var (for VISIT_x_DIR) or STRING var (for VISIT_x_LIBDEP).
#
# Kathleen Bonnell, Tue Feb 16 14:04:16 MST 2010
# Removed conditional setting of VISIT_RENDERING_SIZE_LIMIT, in case
# initial configure pass was missing something. Install our zlib on windows.
#
# Cyrus Harrison, Sun Feb 21 19:12:33 PST 2010
# Added support for enable/disable of Python Engine Filters.
#
# Eric Brugger, Mon Mar 8 13:02:08 PST 2010
# Modified the logic that sets the VISIT_SVN_REVISION to get it from
# the file SVN_REVISION before trying svn to get it.
#
# Cyrus Harrison, Tue Mar 9 08:02:50 PST 2010
# Enabled python filters support by default.
#
# Kathleen Bonnell, Wed Mar 17 10:06:44 MST 2010
# Change cmake minimum required to 2.8.0, to support FILE(COPY .
#
# Kathleen Bonnell, Thu April 1 19:29:24 MST 2010
# Find MakeNSIS on windows. Add PACKAGE target for windows, that uses
# our NSIS scripts to create the self-installer.
#
# Kathleen Bonnell, Wed April 14 16:33:27 MST 2010
# Renable FindTortoiseSVN on windows to retrieve SVN revision number.
#
# Jeremy Meredith, Mon Apr 19 16:34:02 EDT 2010
# Support multiple paths returned for include files from mpi compiler.
#
# Cyrus Harrison, Tue Apr 27 13:39:38 PDT 2010
# Added ability to bake rpaths for MPI libs into exes & libs when
# 'make install' & 'make package' are used.
#
# Cyrus Harrison, Thu Apr 29 09:32:01 PDT 2010
# Small change to rpath detection to avoid cmake error w/
# LIST(REMOVE_DUPLCIATES) if no rpaths are found.
#
# Tom Fogal, Fri Apr 30 09:35:51 MDT 2010
# Define HAVE_LIBSLIVR as appropriate.
#
# Eric Brugger, Thu May 6 12:23:34 PDT 2010
# I corrected the rpath detection logic to handle the case were there
# were multiple rpaths. In particular, INSTALL_RPATH was being set as a
# list of rpaths (the rpaths end up semi-colon separated) and I changed
# it to a string of space separated rpaths.
#
# Kathleen Bonnell, Tue May 11 13:01:44 MST 2010
# Set HAVE_SELECT to TRUE on windows.
#
# Kathleen Bonnell, Fri Jun 4 7:58:34 PDT 2010
# Changed logic for finding SVN_REVISION so check is not performed on
# any platform if not building from a working copy.
#
# Eric Brugger, Wed Jun 9 13:06:18 PDT 2010
# I made a correction to a MESSAGE statement in the code that adds the
# current link to the installation directory and added a comment that
# explains why the flawed code we have there is actually what we want.
#
# Eric Brugger, Thu Jun 17 13:38:03 PDT 2010
# I modified the file to add -DMPICH_IGNORE_CXX_SEEK wherever -DPARALLEL
# is specified to eliminate a compile failure with some versions of mpi.
#
# Mark C. Miller, Thu Jul 29 17:36:48 PDT 2010
# Added logic to include compiler version information as a comment int
# The PluginVsInstall.cmake file.
#
# Mark C. Miller, Thu Jul 29 23:43:52 PDT 2010
# Added option to ignore problems finding third party libs. It is OFF
# by default.
#
# Kathleen Bonnell, Thu Aug 5 9:34:52 PDT 2010
# For winodws, only override cmake's default CMAKE_INSTALL_PREFIX if it
# wasn't specified on the command line.
#
# Tom Fogal, Thu Aug 5 18:28:17 MDT 2010
# Add missing include/visit directory to default include path.
#
# Kathleen Bonnell, Fri Aug 13 9:59:37 MST 2010
# Allow host-specific config-site files for Windows build. If there is no
# host-specific file, then windows.cmake is still used.
#
# Kathleen Bonnell, Fri Aug 13 10:50:15 MST 2010
# Allow config-site file to be specified on command-line. Overrides
# host-specific (all platforms) or windows.cmake (on windows).
# usage: -D VISIT_CONFIG_SITE="/path/to/config-site/file"
#
# Cyrus Harrison, Mon Aug 16 13:12:17 PDT 2010
# 1) Disable python filters if VISIT_NOLINK_MPI_WITH_LIBRARIES is true b/c
# the mpicom module (a shared lib) must link to mpi.
# 2) (Non-windows) add extra info about success of config-site include.
#
# Kathleen Bonnell, Thu Aug 19 18:05:27 MST 2010
# Fix broken plugin install target on windows.
#
# Kathleen Bonnell, Thu Sep 2 15:44:22 PDT 2010
# Add flag to windows nsis-installer script for 64 bit.
#
# Mark C. Miller, Tue Sep 21 13:47:27 PDT 2010
# Fix DBIO_ONLY mode.
#
# Tom Fogal, Wed Sep 22 13:45:36 MDT 2010
# Fix HAVE_LIBGLEW definition.
#
# Mark C. Miller, Fri Oct 22 12:28:25 PDT 2010
# Added missing LIBDEP support for ExodusII dependence on (its own) netcdf.
#
# Brad Whitlock, Fri Oct 29 16:56:34 PDT 2010
# I added some more filtering when generating VisItLibraryDependencies.cmake
# so it does not include local path names for Qt and Python.
#
# Kathleen Bonnell, Thu Dec 2 15:49:04 MST 2010
# Changed how ZLIB is handled on Windows. Add compiler version messages
# for MSVC to PluginVsInstall.cmake. Make windows-specific string
# replacements in VisItLibraryDependencies.cmake. Allow '*.hpp' when
# adding headers. Add VisItGenerator.cmake file for plugin development
# against an Installed VisIt on Windows.
#
# Kathleen Bonnell, Fri Dec 10 14:37:15 PST 2010
# Add VISIT_3RDPARTY_VAR(VISIT_ZLIB_DIR for windows.
#
# Cyrus Harrison, Mon Dec 20 10:50:29 PST 2010
# Use FORCE when setting various install paths.
#
# Kathleen Bonnell, Tue Dec 28 17:06:41 MST 2010
# Add VISIT_3RDPARTY_VAR for VISIT_SZIP_DIR and VISIT_JPEG_DIR for Windows,
# and VISIT_H5PART_LIBDEP for all platforms. Call find for szip, zlib and
# jpeg before Finds for any libs that may have dependencies on them.
#
# Kathleen Bonnell, Wed Jan 5 10:36:29 PST 2010
# Turn on use of FOLDER property.
# Move Plugin macros to their own CMake file.
#
# Kathleen Bonnell, Thu Jan 6 15:31:12 PST 2010
# Allow data dir to be built on windows.
#
# Eric Brugger, Fri Jan 7 13:24:41 PST 2011
# I replaced the BOXLIB2D and BOXLIB3D variables with just BOXLIB.
#
# Cyrus Harrison, Wed Jan 12 11:41:21 PST 2011
# Add support for optional TYPE [CMAKE_TYPE] arg par to the
# VISIT_OPTION_DEFAULT function.
#
# Cyrus Harrison, Wed Jan 12 11:41:21 PST 2011
# Added init of opt_ARG_PREV in VISIT_OPTION_DEFAULT to avoid cmake
# warning message.
#
# Kathleen Bonnell, Mon Feb 14 11:09:17 MST 2011
# Remove strerror test, HAVE_STRERROR no longer used in VisIt.
#
# Kathleen Bonnell, Wed Feb 16 08:33:33 PST 2011
# Set CMAKE_BUILD_TYPE to Release, if not already set.
#
# Mark C. Miller, Tue Mar 22 17:42:35 PDT 2011
# I fixed problems overriding behavior of VISIT_3RDPARTY_VAR/DEP macros
# when cmake is invoked with -DFOO_DIR:PATH=<path> to specify path to a
# 3rd party FOO lib. It was not working previously. I also removed
# redundancy in args passed to VISIT_3RDPARTY_VAR/DEP macros
# (VISIT_FOO_DIR and FOO_DIR replaced with just FOO_DIR).
#
# Mark C. Miller, Wed Mar 30 09:30:49 PDT 2011
# Fixed VISIT_3RDPARTY_VAR/DEP macros to define empty string ("") when
# a lib's symbols are not defined instead of -NOTFOUND.
#
# Eric Brugger, Thu May 12 12:50:58 PDT 2011
# Add VISIT_FORCE_SSH_TUNNELING that always forces ssh tunneling for all
# data connections.
#
# Gunther H. Weber, Wed Jul 20 15:32:26 PDT 2011
# Add support for creating a Mac App bundle by setting
# VISIT_CREATE_APPBUNDLE_PACKAGE to ON.
#
# Kathleen Biagas, Mon Aug 8 08:08:42 MST 2011
# Use VISIT_3RDPARTY_DEP for all libdep vars.
#
# Kathleen Biagas, Wed Aug 17 10:59:33 PDT 2011
# Remove vtkzlib as a substitute for zlib.
#
# Kathleen Biagas, Wed Aug 17 12:31:50 PDT 2011
# Make use of NSIS to create an installer an option.
#
# Gunther H. Weber, Tue Sep 20 17:15:48 PDT 2011
# Use NERSC_HOST environment variable instead of hostname to determine if
# we are running on Franklin or Hopper.
#
# Kathleen Biagas, Mon Sep 26 14:59:32 MST 2011
# Add mpi search support for Windows.
#
# Gunther H. Weber, Wed Oct 5 19:14:27 PDT 2011
# Change NERSC_HOST to VISIT_HOSTNAME to make it more general
#
# Dave Pugmire, Tue Jan 10 15:30:02 EST 2012
# Added support for R.
#
# Kathleen Biagas, Tue Jan 24 12:22:47 MST 2012
# On windows, use VisIt version of FindMPI.cmake to ensure correct search
# paths. Also ensure paths returned from FindMPI are converted to NATIVE
# style.
#
# Eric Brugger, Wed Feb 22 10:14:46 PST 2012
# I added support for building without mesa.
#
# Kathleen Biagas, Fri Mar 9 15:30:58 PST 2012
# Prevent retesting of PROTOTYPE functions on re-configure.
#
# Brad Whitlock, Fri May 18 16:35:34 PST 2012
# Enhance support for resource files on Windows so we fill in more
# application information.
#
# Cyrus Harrison, Tue May 22 10:52:56 PDT 2012
# Make PySide search conditional on VISIT_PYTHON_SCRIPTING.
# Make Python search conditional on VISIT_PYTHON_SCRIPTING OR
# VISIT_PYTHON_FILTERS
#
# Eric Brugger, Fri May 25 09:50:53 PDT 2012
# I set the VISIT_RENDERING_SIZE_LIMIT to 16384 so that we are not
# unnecessarily constraining the user. There is no way to set this
# properly since this is used in the viewer and the limit really comes
# from the engine, which may have a different size if running
# client/server. This setting should be removed and a runtime check
# should be added to the engine.
#
# Kathleen Biagas, Thu Jun 21 11:12:57 MST 2012
# Include paths for vtk, exodusii, python and lib names for ptyhon are
# different on windows than unix, so use special vars for use with
# PluginVsInstall.
# Added function 'ADD_TARGET_INCLUDE'. (requires cmake 2.8.8 to work)
# Modify how parallel flags are handled on windows.
# Fix glitch with ADD_TARGET_DEFINITIONS when target
# had more than one definition set already.
#
# Kathleen Biagas, Tue Jun 26 13:38:27 MST 2012
# Fixed parallel definitions for windows (removed -D).
#
# Kathleen Biagas, Wed Sep 12 16:02:02 PDT 2012
# Added VISIT_INSTALL_PROFILES_TO_HOST as a first-class VisIt option.
#
# Kathleen Biagas, Mon Dec 17 16:56:38 MST 2012
# Use CMake's FindMPI module for windows.
#
# Cyrus Harrison, Thu Jan 10 10:03:50 PST 2013
# Try to capture the full cmake invocation command line.
# On non windows systems, generate a script that allows re-config
# from scratch using the captured invocation command line.
#
# Mark C. Miller, Tue Jan 15 17:15:43 PST 2013
# Modified cmake invokation logic to ensure the CMAKE_INVOKE variable
# is indeed (forced) cached so it winds up in CMakeCache.txt and
# adjusted name of the shell script to recmake_visit.sh.
#
# Mark C. Miller, Wed Feb 6 16:23:09 PST 2013
# Fix missing '#' in first line of recmake_visit.sh file.
#
# Kathleen Biagas, Tue Feb 26 13:58:12 MST 2013
# Added VISIT_XXX_DEFAULT internal cache vars that store values set in
# config-site cmake files via VISIT_OPTION_DEFAULT. This allows for
# VISIT_XXX vars to be overridden by changes to CMakeCache.txt. If values
# in the config-site cmake files change, they will still take precedence
# over changes made to CMakeCache.txt (ie preserves old behavior).
#
# Eric Brugger, Tue Mar 19 10:40:49 PDT 2013
# Added code to only build the paraDIS reader if boost 1.36.0 or later
# was installed on the system.
#
# Eric Brugger, Wed Mar 20 17:23:28 PDT 2013
# I modified the script to have VisIt use the system boost everywhere
# instead of the internal boost if the system boost is usable by
# paraDIS. This is to avoid using the system boost in the paraDIS
# reader and the internal boost in the rest of visit. This fix was
# recommended by Gunther. The other option was to add more of boost
# to the internal boost so that it could be used by paraDIS, but that
# seemed like more work.
#
# Kathleen Biagas, Thur May 2 14:08:27 MST 2013
# Don't bother finding bulk of thirdparty libs if building minimal plugins.
#
# Kathleen Biagas, Wed May 8 16:24:01 PDT 2013
# Remove EXODUS, no longer needed.
#
# Eric Brugger, Thu May 9 17:09:27 PDT 2013
# Removed support for mangled mesa.
#
# Kathleen Biagas, Tue Sep 3 11:06:51 PDT 2013
# Turn off SLIVR if we aren't using GLEW.
#
# Cyrus Harrison, on Oct 28 14:39:05 PDT 2013
# Fix exported VTK targets for VTK-6. Fix VTK-6 include dirs
# for make install / package.
#
# Kathleen Biagas, Wed Nov 6 17:42:32 PST 2013
# Remove setting of CMAKE_Java_xxx, rely instead on the Java_xxx vars
# set by FindJava.cmake
#
# Kathleen Biagas, Tue Nov 26 10:14:29 PST 2013
# Only add osxfixup dir if on APPLE.
#
#****************************************************************************/
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8 FATAL_ERROR)
IF (COMMAND cmake_policy)
cmake_policy(SET CMP0003 NEW)
ENDIF (COMMAND cmake_policy)
#
# Try to capture the initial set of cmake command line args passed by
# the user for configuration.
# Recipe taken from http://stackoverflow.com/questions/10205986/how-to-capture-cmake-command-line-arguments
#
# Note: The entrires will live on CMakeCache.txt, so re-configuring with
# a command line that doesn't include an option won't remove it. You need
# to remove the CMakeCache.txt file, or override the value via the command line.
#
#
GET_CMAKE_PROPERTY(CACHE_VARS CACHE_VARIABLES)
FOREACH(CACHE_VAR ${CACHE_VARS})
GET_PROPERTY(CACHE_VAR_HELPSTRING CACHE ${CACHE_VAR} PROPERTY HELPSTRING)
IF(CACHE_VAR_HELPSTRING STREQUAL "No help, variable specified on the command line.")
GET_PROPERTY(CACHE_VAR_TYPE CACHE ${CACHE_VAR} PROPERTY TYPE)
IF(CACHE_VAR_TYPE STREQUAL "UNINITIALIZED")
SET(CACHE_VAR_TYPE)
ELSE(CACHE_VAR_TYPE STREQUAL "UNINITIALIZED")
SET(CACHE_VAR_TYPE :${CACHE_VAR_TYPE})
ENDIF()
SET(CMAKE_INVOKE_ARGS "${CMAKE_INVOKE_ARGS} -D${CACHE_VAR}${CACHE_VAR_TYPE}=\"${${CACHE_VAR}}\"")
ENDIF()
ENDFOREACH(CACHE_VAR ${CACHE_VARS})
# Record the full command line invocation.
SET(CMAKE_INVOKE "${CMAKE_COMMAND} ${CMAKE_INVOKE_ARGS} ${CMAKE_CURRENT_SOURCE_DIR}" CACHE STRING "Command used to invoke cmake" FORCE)
# Create a simple shell script that allows us to reinvoke cmake with the captured command line.
IF (NOT WIN32)
FILE(WRITE ${CMAKE_BINARY_DIR}/recmake_visit.sh "#!/bin/sh\n"
"rm -f CMakeCache.txt\n"
"${CMAKE_INVOKE}\n")
ENDIF (NOT WIN32)
# Tell the CMake makefile generator to not have rules depend on
# themselves. This causes extra rebuilds when the include path
# changes from turning a kit on or off.
SET(CMAKE_SKIP_RULE_DEPENDENCY 1)
# for now...
SET(BUILD_SHARED_LIBS 1)
# this turns on the FOLDER property for generators that may make use of it, like Visual Studio
# should have no effect for generators that do not use.
SET_PROPERTY(GLOBAL PROPERTY USE_FOLDERS ON)
#-----------------------------------------------------------------------------
# Get this computer's hostname using cmake's cross platform helper function.
#----------------------------------------------------------------------------
SITE_NAME(HOSTNAME)
# Use NERSC_HOST environment variable to determine if we are running on Franklin
# or Hopper. If so, use that hostname instead of the result of SITE_NAME which is
# only the name of the login node we are running on.
IF(NOT "$ENV{VISIT_HOSTNAME}" STREQUAL "")
SET(HOSTNAME "$ENV{VISIT_HOSTNAME}")
ENDIF(NOT "$ENV{VISIT_HOSTNAME}" STREQUAL "")
#-----------------------------------------------------------------------------
# Helper function for setting build options via config-site file.
# Supports optional argument pair: TYPE [CMAKE_TYPE], default type = PATH
#-----------------------------------------------------------------------------
FUNCTION(VISIT_OPTION_DEFAULT var)
SET(opt_ARGS "")
SET(opt_TYPE "PATH")
SET(opt_ARG_PREV "[unset]")
FOREACH(opt_ARG ${ARGN})
## if arg is TYPE:
## we want to use the next value as the cmake var type
## otherwise:
## we want to append the argument to the list of args used for "SET"
IF( ${opt_ARG_PREV} STREQUAL "TYPE")
SET(opt_TYPE ${opt_ARG})
ELSEIF(NOT ${opt_ARG} STREQUAL "TYPE")
LIST(APPEND opt_ARGS ${opt_ARG})
ENDIF(${opt_ARG_PREV} STREQUAL "TYPE")
SET(opt_ARG_PREV ${opt_ARG})
ENDFOREACH(opt_ARG in ${ARGN})
##
SET(default_base "${var}_DEFAULT")
SET(default_base_val "${${default_base}}")
IF(NOT "${default_base_val}" STREQUAL "${opt_ARGS}")
SET("${default_base}" "${opt_ARGS}" CACHE INTERNAL "${var} default value" FORCE)
SET(${var} "${opt_ARGS}" CACHE ${opt_TYPE} "${var} value" FORCE)
ENDIF(NOT "${default_base_val}" STREQUAL "${opt_ARGS}")
ENDFUNCTION(VISIT_OPTION_DEFAULT var)
INCLUDE(${CMAKE_CURRENT_SOURCE_DIR}/CMake/SetupITAPS.cmake)
#-----------------------------------------------------------------------------
# Include this computer's config-site if one exists
#-----------------------------------------------------------------------------
IF (NOT WIN32)
IF(VISIT_CONFIG_SITE)
SET(VISIT_CONFIG_SITE_FILE ${VISIT_CONFIG_SITE})
ELSE(VISIT_CONFIG_SITE)
SET(VISIT_CONFIG_SITE_FILE "config-site/${HOSTNAME}.cmake")
ENDIF(VISIT_CONFIG_SITE)
MESSAGE(STATUS "Trying to include config-site file '${VISIT_CONFIG_SITE_FILE}'")
INCLUDE(${VISIT_CONFIG_SITE_FILE} OPTIONAL RESULT_VARIABLE VISIT_CONFIG_SITE_FILE_FOUND)
IF("${VISIT_CONFIG_SITE_FILE_FOUND}" STREQUAL "NOTFOUND")
MESSAGE(STATUS "NOT FOUND: '${VISIT_CONFIG_SITE_FILE}'")
ELSE("${VISIT_CONFIG_SITE_FILE_FOUND}" STREQUAL "NOTFOUND")
MESSAGE(STATUS "Included: '${VISIT_CONFIG_SITE_FILE}'")
ENDIF("${VISIT_CONFIG_SITE_FILE_FOUND}" STREQUAL "NOTFOUND")
ENDIF (NOT WIN32)
#-----------------------------------------------------------------------------
# If not already set, we use a default build type of Release
#-----------------------------------------------------------------------------
IF (NOT CMAKE_BUILD_TYPE)
SET(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build,
options are: Debug Release RelWithDebInfo MinSizeRel.")
ENDIF()
#-----------------------------------------------------------------------------
# Set compiler from config-site
#-----------------------------------------------------------------------------
SET(CMAKE_C_COMPILER ${VISIT_C_COMPILER})
SET(CMAKE_CXX_COMPILER ${VISIT_CXX_COMPILER})
SET(CMAKE_Fortran_COMPILER ${VISIT_FORTRAN_COMPILER})
#-----------------------------------------------------------------------------
# VisIt project. Declare the project after including the input because
# this lets us set up defaults in the config-site.
#-----------------------------------------------------------------------------
PROJECT(VISIT)
#-----------------------------------------------------------------------------
# Set extended platlform defs.
#-----------------------------------------------------------------------------
INCLUDE(${VISIT_SOURCE_DIR}/CMake/SetUpPlatformDefs.cmake)
#-----------------------------------------------------------------------------
# Setup out of source build indicator.
#-----------------------------------------------------------------------------
IF("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
SET(VISIT_OUT_OF_SOURCE_BUILD 0)
ELSE("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
SET(VISIT_OUT_OF_SOURCE_BUILD 1)
ENDIF("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
#-----------------------------------------------------------------------------
# Windows needs values that are only set at this point, so now include
# the windows cmake file.
#-----------------------------------------------------------------------------
IF (WIN32)
IF (VISIT_CONFIG_SITE)
MESSAGE(STATUS "Trying to include ${VISIT_CONFIG_SITE}")
INCLUDE(${VISIT_CONFIG_SITE})
ELSEIF (EXISTS ${VISIT_SOURCE_DIR}/config-site/${HOSTNAME}.cmake)
MESSAGE(STATUS "Trying to include config-site/${HOSTNAME}.cmake")
INCLUDE(config-site/${HOSTNAME}.cmake)
ELSE (VISIT_CONFIG_SITE)
MESSAGE(STATUS "Trying to include config-site/windows.cmake")
INCLUDE(config-site/windows.cmake)
ENDIF (VISIT_CONFIG_SITE)
SET(CMAKE_SKIP_RPATH ON CACHE INTERNAL "VisIt builds with rpath set." FORCE)
IF(NOT VISIT_WINDOWS_DIR)
MESSAGE(FATAL_ERROR "VISIT_WINDOWS_DIR is not defined.")
ENDIF()
IF(NOT EXISTS ${VISIT_WINDOWS_DIR})
MESSAGE(FATAL_ERROR "${VISIT_WINDOWS_DIR} does not exist.")
ENDIF()
ENDIF (WIN32)
#-----------------------------------------------------------------------------
# Output directories.
#-----------------------------------------------------------------------------
IF(NOT CMAKE_LIBRARY_OUTPUT_DIRECTORY)
SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${VISIT_BINARY_DIR}/lib CACHE INTERNAL "Single output directory for building all libraries.")
ENDIF(NOT CMAKE_LIBRARY_OUTPUT_DIRECTORY)
IF(NOT CMAKE_ARCHIVE_OUTPUT_DIRECTORY)
SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${VISIT_BINARY_DIR}/lib CACHE INTERNAL "Single output directory for building all libraries.")
ENDIF(NOT CMAKE_ARCHIVE_OUTPUT_DIRECTORY)
IF (NOT CMAKE_RUNTIME_OUTPUT_DIRECTORY)
SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${VISIT_BINARY_DIR}/exe CACHE INTERNAL "Single output directory for building all executables.")
ENDIF(NOT CMAKE_RUNTIME_OUTPUT_DIRECTORY)
SET(VISIT_LIBRARY_DIR ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR})
SET(VISIT_EXECUTABLE_DIR ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR})
SET(CXX_TEST_PATH ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
#-----------------------------------------------------------------------------
# configure options
#-----------------------------------------------------------------------------
OPTION(VISIT_PARALLEL "Build VisIt's parallel compute engine." OFF)
OPTION(VISIT_TUVOK "Build VisIt with support for the Tuvok volume rendering library." OFF)
OPTION(VISIT_SLIVR "Build VisIt with support for the SLIVR volume rendering library." ON)
OPTION(VISIT_STATIC "Build VisIt statically." OFF)
IF(VISIT_STATIC)
ADD_DEFINITIONS(-DVISIT_STATIC -DGLEW_STATIC)
ENDIF(VISIT_STATIC)
OPTION(VISIT_OSX_USE_RPATH "Use rpath instead of executable_path while installing" OFF)
OPTION(VISIT_PYTHON_SCRIPTING "Build VisIt with Python scripting support." ON)
OPTION(VISIT_PYTHON_FILTERS "Build VisIt with Python Engine Filter support." ON)
OPTION(VISIT_DDT "Build VisIt with support for the DDT debugger." OFF)
IF(VISIT_DDT)
ADD_DEFINITIONS(-DHAVE_DDT)
ENDIF(VISIT_DDT)
OPTION(VISIT_BUILD_ALL_PLUGINS "Build all of VisIt's plugins." OFF)
OPTION(VISIT_BUILD_MINIMAL_PLUGINS "Build a minimal set of VisIt's plugins." OFF)
OPTION(VISIT_ZLIB "Use VisIt's internal libz" OFF)
OPTION(VISIT_JAVA "Build the VisIt Java client interface" OFF)
OPTION(VISIT_SERVER_COMPONENTS_ONLY "Build only vcl, mdserver, engine and their plugins" OFF)
OPTION(VISIT_ENGINE_ONLY "Build only the compute engine and its plugins" OFF)
OPTION(VISIT_DBIO_ONLY "Build only visitconvert and engine plugins" OFF)
# If we're doing DBIO_ONLY then compile all sources with this flag so we don't
# ever have to do things like include visit-config.h to get it.
IF(VISIT_DBIO_ONLY)
ADD_DEFINITIONS(-DDBIO_ONLY)
ENDIF(VISIT_DBIO_ONLY)
OPTION(VISIT_DISABLE_SELECT "Disable use of the select() function" OFF)
OPTION(VISIT_USE_NOSPIN_BCAST "Use VisIt's no-spin Bcast in parallel" ON)
OPTION(VISIT_INSTALL_THIRD_PARTY "Install VisIt's 3rd party I/O libs and includes to permit plugin development" OFF)
OPTION(VISIT_NOLINK_MPI_WITH_LIBRARIES "Do not link MPI with VisIt's parallel shared libraries; just with executables" OFF)
OPTION(VISIT_CREATE_SOCKET_RELAY_EXECUTABLE "Create a separate executable that forwards VisIt's socket connection between engine and component launcher" OFF)
OPTION(VISIT_RPATH_RELATIVE_TO_EXECUTABLE_PATH "Install rpath relative to executable location using \$ORIGIN tag" OFF)
OPTION(VISIT_FORTRAN "Enable compilation of Fortran example progams" OFF)
OPTION(VISIT_DATA_MANUAL_EXAMPLES "Build Getting Data Into VisIt examples" OFF)
OPTION(IGNORE_THIRD_PARTY_LIB_PROBLEMS "Ignore problems finding requested third party libraries")
OPTION(VISIT_FORCE_SSH_TUNNELING "Force ssh tunnelling for sockets" OFF)
OPTION(VISIT_CREATE_APPBUNDLE_PACKAGE "Create DMG file with Mac App bundle with make package" OFF)
IF(WIN32)
OPTION(VISIT_MAKE_NSIS_INSTALLER "Create an installer package using NSIS" OFF)
OPTION(VISIT_WINDOWS_APPLICATION "Create Windows-style applications with no console" ON)
IF(VISIT_WINDOWS_APPLICATION)
SET(VISIT_APPLICATION_STYLE "WIN32")
ENDIF(VISIT_WINDOWS_APPLICATION)
ENDIF(WIN32)
IF(VISIT_MESA_DIR)
OPTION(VISIT_USE_MANGLED_MESA "Enable use of mangled Mesa classes in VisIt" OFF)
ENDIF(VISIT_MESA_DIR)
OPTION(VISIT_INSTALL_AS_BETA "Install as beta (symlink beta instead of current to installed version)." OFF)
OPTION(VISIT_MPICH_INSTALL "Install MPICH into VisIt binary distribution" OFF)
IF(APPLE OR WIN32)
OPTION(VISIT_USE_X "Use X11" OFF)
ELSE(APPLE OR WIN32)
OPTION(VISIT_USE_X "Use X11" ON)
ENDIF(APPLE OR WIN32)
OPTION(VISIT_USE_GLEW "Use GLEW to call GL functions." ON)
OPTION(VISIT_USE_BOOST "Use system boost library." ON)
OPTION(VISIT_THREAD "Build VisIt with thread support." OFF)
SET(VISIT_INSTALL_PROFILES_TO_HOSTS "" CACHE STRING "Install specified host profiles (no action if empty)." )
MACRO(VISIT_3RDPARTY_VAR libvar comment)
IF(NOT DEFINED VISIT_${libvar})
# Create an empty entry for this path variable
SET(VISIT_${libvar} "" CACHE PATH "${comment}")
ELSE(NOT DEFINED VISIT_${libvar})
IF(DEFINED ${libvar})
# Ensure VISIT_FOO_DIR=FOO_DIR (override from CL)
SET(VISIT_${libvar} ${${libvar}} CACHE PATH "${comment}" FORCE)
ELSE(DEFINED ${libvar})
# Set FOO_DIR=VISIT_FOO_DIR (default from config-site file)
SET(${libvar} ${VISIT_${libvar}})
ENDIF(DEFINED ${libvar})
ENDIF(NOT DEFINED VISIT_${libvar})
ENDMACRO(VISIT_3RDPARTY_VAR libvar comment)
MACRO(VISIT_3RDPARTY_DEP libvar comment)
IF(NOT DEFINED VISIT_${libvar})
# Create an entry for this string variable
SET(VISIT_${libvar} "" CACHE STRING "${comment}")
ELSE(NOT DEFINED VISIT_${libvar})
IF(DEFINED ${libvar})
# Ensure VISIT_FOO_LIBDEP=FOO_LIBDEP (override from CL)
SET(VISIT_${libvar} ${${libvar}} CACHE STRING "${comment}" FORCE)
ELSE(DEFINED ${libvar})
# Set FOO_LIBDEP=VISIT_FOO_LIBDEP (default from config-site file)
SET(${libvar} ${VISIT_${libvar}})
ENDIF(DEFINED ${libvar})
ENDIF(NOT DEFINED VISIT_${libvar})
ENDMACRO(VISIT_3RDPARTY_DEP libvar comment)
# Define options that let us pick our standard libraries: VTK,Mesa,Qt,Python
# and so on.
VISIT_3RDPARTY_VAR(VTK_DIR "Path containing the VTK library's bin and lib")
VISIT_3RDPARTY_VAR(QT_BIN "Path to the Qt library's bin (path containing qmake)")
VISIT_3RDPARTY_VAR(PYTHON_DIR "Path containing the Python library's include and lib")
IF (NOT WIN32)
VISIT_3RDPARTY_VAR(MESA_DIR "Path containing the Mesa library's include and lib")
ENDIF (NOT WIN32)
VISIT_3RDPARTY_VAR(ICET_DIR "Path containing the Ice-T library's include and lib")
VISIT_3RDPARTY_VAR(TCMALLOC_DIR "Path containing the tcmalloc library's include and lib")
# Libraries some third-parties are dependent upon
IF(WIN32)
VISIT_3RDPARTY_VAR(JPEG_DIR "Path containing the jpeg library's include and lib")
VISIT_3RDPARTY_VAR(SZIP_DIR "Path containing the szip library's include and lib")
ENDIF(WIN32)
# Define the options that let us pick I/O library installation locations. When
# the library option is defined then we also define the variable name passed as
# the 3rd argument. That variable is what is used in our various Find routines.
#
# Note: Define LIBDEP ONLY for libs a plugin is INdirectly dependent on (e.g.
# needs to link but not to compile). Use the plugin's .xml file for
# libs a plugin is DIRECTLY dependent on (e.g. needs to both compile
# and link).
VISIT_3RDPARTY_VAR(PYSIDE_DIR "Path containing the PySide installation")
VISIT_3RDPARTY_VAR(ADIOS_DIR "Path containing the ADIOS library's include and lib")
VISIT_3RDPARTY_VAR(ADVIO_DIR "Path containing the AdvIO library's include and lib")
VISIT_3RDPARTY_VAR(BOXLIB_DIR "Path containing the Boxlib library's include and lib")
VISIT_3RDPARTY_VAR(CCMIO_DIR "Path containing the CCMIO library's include and lib")
VISIT_3RDPARTY_VAR(CFITSIO_DIR "Path containing the CFITSIO library's include and lib")
VISIT_3RDPARTY_VAR(CGNS_DIR "Path containing the CGNS library's include and lib")
VISIT_3RDPARTY_DEP(CGNS_LIBDEP "CGNS library dependencies")
VISIT_3RDPARTY_VAR(FASTBIT_DIR "Path containing the Fastbit library's include and lib")
VISIT_3RDPARTY_VAR(GDAL_DIR "Path containing the GDAL library's include and lib")
VISIT_3RDPARTY_VAR(HDF4_DIR "Path containing the HDF4 library's include and lib")
VISIT_3RDPARTY_DEP(HDF4_LIBDEP "HDF4 library dependencies")
VISIT_3RDPARTY_VAR(HDF5_DIR "Path containing the HDF5 library's include and lib")
VISIT_3RDPARTY_DEP(HDF5_LIBDEP "HDF5 library dependencies")
VISIT_3RDPARTY_VAR(H5PART_DIR "Path containing the H5Part library's include and lib")
VISIT_3RDPARTY_DEP(H5PART_LIBDEP "H5Part library dependencies")
VISIT_3RDPARTY_VAR(MILI_DIR "Path containing the Mili library's include and lib")
VISIT_3RDPARTY_VAR(OPENGL_DIR "Path containing the OpenGL library's include and lib")
VISIT_3RDPARTY_VAR(NETCDF_DIR "Path containing the NETCDF library's include and lib")
VISIT_3RDPARTY_DEP(NETCDF_LIBDEP "NETCDF library dependencies")
VISIT_3RDPARTY_VAR(R_DIR "Path containing the R library's include and lib")
VISIT_3RDPARTY_VAR(SILO_DIR "Path containing the Silo library's include and lib")
VISIT_3RDPARTY_DEP(SILO_LIBDEP "Silo library dependencies")
VISIT_3RDPARTY_VAR(XDMF_DIR "Path containing the Xdmf library's include and lib")
VISIT_3RDPARTY_DEP(XDMF_LIBDEP "Xdmf library dependencies")
VISIT_3RDPARTY_VAR(MDSPLUS_DIR "Path containing the MDSplus library's include and lib")
VISIT_3RDPARTY_VAR(MANTA_DIR "Path containing the Manta library's include and lib")
VISIT_3RDPARTY_VAR(ZLIB_DIR "Path containing the zlib library's include and lib")
VISIT_3RDPARTY_VAR(UINTAH_DIR "Path containing the Uintah library's include and lib")
VISIT_3RDPARTY_VAR(GFORTRAN_DIR "Path containing the GFortran library's include and lib")
#-----------------------------------------------------------------------------
# Read the version
#-----------------------------------------------------------------------------
FILE(STRINGS VERSION VERSION)
IF(NOT VERSION)
SET(VERSION "2.0.0")
ENDIF(NOT VERSION)
SET(VISIT_VERSION ${VERSION})
#-----------------------------------------------------------------------------
# Set up some installation related value and macros (needs version).
#-----------------------------------------------------------------------------
IF(WIN32)
# override cmake's default of %Program Files% for CMAKE_INSTALL_PREFIX
# if it wasn't specified via command line,
IF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
IF( NOT APPENDED_VISIT_VERSION_TO_INSTALL_PATH)
SET(CMAKE_INSTALL_PREFIX "${VISIT_BINARY_DIR}/VisIt ${VISIT_VERSION}"
CACHE PATH "Install path prefix, prepended onto install directories" FORCE)
SET(APPENDED_VISIT_VERSION_TO_INSTALL_PATH TRUE CACHE INTERNAL "")
ENDIF( NOT APPENDED_VISIT_VERSION_TO_INSTALL_PATH)
ENDIF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
# set up directories
SET(VISIT_INSTALLED_VERSION ${CMAKE_INSTALL_PREFIX}
CACHE PATH "VisIt install directory" FORCE)
SET(VISIT_INSTALLED_VERSION_BIN ${CMAKE_INSTALL_PREFIX}
CACHE PATH "VisIt bin install directory" FORCE)
SET(VISIT_INSTALLED_VERSION_LIB ${CMAKE_INSTALL_PREFIX}/lib
CACHE PATH "VisIt lib install directory" FORCE)
SET(VISIT_INSTALLED_VERSION_INCLUDE ${CMAKE_INSTALL_PREFIX}/include
CACHE PATH "VisIt include install directory" FORCE)
SET(VISIT_INSTALLED_VERSION_PLUGINS ${CMAKE_INSTALL_PREFIX}
CACHE PATH "VisIt plugins install directory" FORCE)
SET(VISIT_INSTALLED_VERSION_ARCHIVES ${CMAKE_INSTALL_PREFIX}/lib
CACHE PATH "3rd party I/O archives install directory" FORCE)
SET(VISIT_INSTALLED_VERSION_RESOURCES ${CMAKE_INSTALL_PREFIX}/resources
CACHE PATH "VisIt resources install directory" FORCE)
ELSE(WIN32)
INCLUDE(${VISIT_SOURCE_DIR}/CMake/DetermineVisItArchitecture.cmake)
DETERMINE_VISIT_ARCHITECTURE(VISIT_INSTALL_PLATFORM)
SET(VISIT_INSTALLED_VERSION ${VISIT_VERSION}/${VISIT_INSTALL_PLATFORM}
CACHE PATH "VisIt install directory" FORCE)
SET(VISIT_INSTALLED_VERSION_BIN ${VISIT_INSTALLED_VERSION}/bin
CACHE PATH "VisIt bin install directory" FORCE)
SET(VISIT_INSTALLED_VERSION_LIB ${VISIT_INSTALLED_VERSION}/lib
CACHE PATH "VisIt lib install directory" FORCE)
SET(VISIT_INSTALLED_VERSION_INCLUDE ${VISIT_INSTALLED_VERSION}/include
CACHE PATH "VisIt include install directory" FORCE)
SET(VISIT_INSTALLED_VERSION_PLUGINS ${VISIT_INSTALLED_VERSION}/plugins
CACHE PATH "VisIt plugins install directory" FORCE)
SET(VISIT_INSTALLED_VERSION_ARCHIVES ${VISIT_INSTALLED_VERSION}/archives
CACHE PATH "3rd party I/O archives install directory" FORCE)
SET(VISIT_INSTALLED_VERSION_RESOURCES ${VISIT_INSTALLED_VERSION}/resources
CACHE PATH "VisIt resources install directory" FORCE)
IF(VISIT_RPATH_RELATIVE_TO_EXECUTABLE_PATH)
SET(CMAKE_INSTALL_RPATH "$ORIGIN/../lib")
SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
ENDIF(VISIT_RPATH_RELATIVE_TO_EXECUTABLE_PATH)
#
# Note that the last line in the EXECUTE_PROCESS command below should
# have a "\" before the ${CMAKE_INSTALL_PREFIX} to be truely correct.
# The code creates a symbolic link from "current" to the current visit
# version number. Because of the coding error it succeeds when doing
# a "make install" and fails when doing a "make package", which is
# exactly what we want. We do this because CPACK may create an
# invalid tar file if the distribution contains a link to a directory.
# This happens because CPACK removes the symbolic link and replaces all
# the files in the directory pointed to by the symbolic link with hard
# links. It only stores 100 characters of path information in the hard
# link so long paths may get truncated resulting in invalid files. We
# have a bunch of files with paths greater than 100 character so this
# fails in our case.
#
IF(VISIT_INSTALL_AS_BETA)
INSTALL(CODE "
MESSAGE(\"Symlinking beta to ${VISIT_VERSION}\")
EXECUTE_PROCESS(WORKING_DIRECTORY \${CMAKE_INSTALL_PREFIX}
COMMAND \${CMAKE_COMMAND} -E create_symlink
\"${VISIT_VERSION}\"
\"${CMAKE_INSTALL_PREFIX}/beta\")
")
ELSE(VISIT_INSTALL_AS_BETA)
INSTALL(CODE "
MESSAGE(\"Symlinking current to ${VISIT_VERSION}\")
EXECUTE_PROCESS(WORKING_DIRECTORY \${CMAKE_INSTALL_PREFIX}
COMMAND \${CMAKE_COMMAND} -E create_symlink
\"${VISIT_VERSION}\"
\"${CMAKE_INSTALL_PREFIX}/current\")
")
ENDIF(VISIT_INSTALL_AS_BETA)
ENDIF(WIN32)
MARK_AS_ADVANCED(
VISIT_INSTALLED_VERSION_BIN
VISIT_INSTALLED_VERSION_LIB
VISIT_INSTALLED_VERSION_PLUGINS
VISIT_INSTALLED_VERSION_ARCHIVES
VISIT_INSTALLED_VERSION_INCLUDE
)
MACRO(VISIT_INSTALL_TARGETS_RELATIVE dest_dir)
IF(VISIT_STATIC)
# Skip installation of static libraries when we build statically
FOREACH(T ${ARGN})
GET_TARGET_PROPERTY(pType ${T} TYPE)
IF(NOT ${pType} STREQUAL "STATIC_LIBRARY")
INSTALL(TARGETS ${T}
RUNTIME DESTINATION ${VISIT_INSTALLED_VERSION_BIN}/${dest_dir}
BUNDLE DESTINATION ${VISIT_INSTALLED_VERSION_BIN}/${dest_dir}
LIBRARY DESTINATION ${VISIT_INSTALLED_VERSION_LIB}/${dest_dir}
ARCHIVE DESTINATION ${VISIT_INSTALLED_VERSION_ARCHIVES}/${dest_dir}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE
GROUP_READ GROUP_WRITE GROUP_EXECUTE
WORLD_READ WORLD_EXECUTE
CONFIGURATIONS "" None Debug Release RelWithDebInfo MinSizeRel
)
ENDIF(NOT ${pType} STREQUAL "STATIC_LIBRARY")
ENDFOREACH(T)
ELSE(VISIT_STATIC)
INSTALL(TARGETS ${ARGN}
RUNTIME DESTINATION ${VISIT_INSTALLED_VERSION_BIN}/${dest_dir}
BUNDLE DESTINATION ${VISIT_INSTALLED_VERSION_BIN}/${dest_dir}
LIBRARY DESTINATION ${VISIT_INSTALLED_VERSION_LIB}/${dest_dir}
ARCHIVE DESTINATION ${VISIT_INSTALLED_VERSION_ARCHIVES}/${dest_dir}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE
GROUP_READ GROUP_WRITE GROUP_EXECUTE
WORLD_READ WORLD_EXECUTE
CONFIGURATIONS "" None Debug Release RelWithDebInfo MinSizeRel
)
ENDIF(VISIT_STATIC)
ENDMACRO(VISIT_INSTALL_TARGETS_RELATIVE)
MACRO(VISIT_INSTALL_TARGETS)
VISIT_INSTALL_TARGETS_RELATIVE("" ${ARGN})
ENDMACRO(VISIT_INSTALL_TARGETS)
# Install the headers for directories that we need in order to build plugins
IF(VISIT_HEADERS_SKIP_INSTALL)
MESSAGE(STATUS "Skipping VisIt headers installation")
ELSE(VISIT_HEADERS_SKIP_INSTALL)
INSTALL(DIRECTORY avt common engine gui launcher mdserver third_party_builtin viewer visit_vtk visitpy vtkqt winutil
DESTINATION ${VISIT_INSTALLED_VERSION_INCLUDE}/visit
FILE_PERMISSIONS OWNER_READ OWNER_WRITE
GROUP_READ GROUP_WRITE
WORLD_READ
DIRECTORY_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE
GROUP_READ GROUP_WRITE GROUP_EXECUTE
WORLD_READ WORLD_EXECUTE
CONFIGURATIONS "" None Debug Release RelWithDebInfo MinSizeRel
FILES_MATCHING PATTERN "*.h"
PATTERN "*.hpp"
PATTERN ".svn" EXCLUDE
PATTERN "CMakeFiles" EXCLUDE
)
ENDIF(VISIT_HEADERS_SKIP_INSTALL)
#-----------------------------------------------------------------------------
# Detect packages here. We could probably write macros that we can include from
# elsewhere for this.
#-----------------------------------------------------------------------------
INCLUDE(${CMAKE_ROOT}/Modules/CheckIncludeFiles.cmake)
INCLUDE(${CMAKE_ROOT}/Modules/CMakeBackwardCompatibilityC.cmake)
INCLUDE(${CMAKE_ROOT}/Modules/CMakeBackwardCompatibilityCXX.cmake)
INCLUDE(${CMAKE_ROOT}/Modules/CheckTypeSize.cmake)
INCLUDE(${CMAKE_ROOT}/Modules/CheckFunctionExists.cmake)
INCLUDE(${CMAKE_ROOT}/Modules/CheckSymbolExists.cmake)
IF(VISIT_USE_BOOST)
INCLUDE(${CMAKE_ROOT}/Modules/FindBoost.cmake)
ENDIF(VISIT_USE_BOOST)
IF(VISIT_USE_X)
INCLUDE(${CMAKE_ROOT}/Modules/FindX11.cmake)
IF(NOT X11_X11_LIB)
SET(VISIT_USE_X OFF)
SET(HAVE_LIBX11 0)
ELSE(NOT X11_X11_LIB)
SET(HAVE_LIBX11 1)
ENDIF(NOT X11_X11_LIB)
ELSE(VISIT_USE_X)
SET(HAVE_LIBX11 0)
SET(CMAKE_X_LIBS "" CACHE INTERNAL "X11 libs.")
SET(CMAKE_X_CFLAGS "" CACHE INTERNAL "X11 extra flags.")
SET(CMAKE_HAS_X 0 CACHE INTERNAL "Is X11 around.")
ENDIF(VISIT_USE_X)
INCLUDE(${CMAKE_ROOT}/Modules/TestBigEndian.cmake)
# Set Boost_USABLE_PARADIS if boost 1.36.0 or later is found. ParaDIS
# uses make_shared, which was only introduced in boost 1.36.0.
IF(Boost_VERSION)
MESSAGE(STATUS " Boost_VERSION=${Boost_VERSION}")
# FindBoost.cmake does not always properly set the major, minor
# and subminor versions correctly, so do that ourselves.
STRING(REPLACE "." "0" Boost_VERSION_NUMERIC "${Boost_VERSION}")
SET(Boost_MAJOR_VERSION 0)
SET(Boost_MINOR_VERSION 0)
SET(Boost_SUBMINOR_VERSION 0)
IF(NOT "${Boost_VERSION_NUMERIC}" STREQUAL "0")
MATH(EXPR Boost_MAJOR_VERSION "${Boost_VERSION_NUMERIC} / 100000")
MATH(EXPR Boost_MINOR_VERSION "${Boost_VERSION_NUMERIC} / 100 % 1000")
MATH(EXPR Boost_SUBMINOR_VERSION "${Boost_VERSION_NUMERIC} % 100")
ENDIF(NOT "${Boost_VERSION_NUMERIC}" STREQUAL "0")
MESSAGE(STATUS " Boost_MAJOR_VERSION=${Boost_MAJOR_VERSION}")
MESSAGE(STATUS " Boost_MINOR_VERSION=${Boost_MINOR_VERSION}")
MESSAGE(STATUS " Boost_SUBMINOR_VERSION=${Boost_SUBMINOR_VERSION}")
IF(Boost_MAJOR_VERSION GREATER 0 AND Boost_MINOR_VERSION GREATER 35)
SET(Boost_USABLE_PARADIS 1)
MESSAGE(STATUS " Boost usable by paraDIS")
ENDIF(Boost_MAJOR_VERSION GREATER 0 AND Boost_MINOR_VERSION GREATER 35)
ENDIF(Boost_VERSION)
IF( (VISIT_PYTHON_SCRIPTING OR VISIT_PYTHON_FILTERS) AND NOT VISIT_DBIO_ONLY)
INCLUDE(${VISIT_SOURCE_DIR}/CMake/FindVisItPython.cmake)
ENDIF((VISIT_PYTHON_SCRIPTING OR VISIT_PYTHON_FILTERS) AND NOT VISIT_DBIO_ONLY)
IF(VISIT_JAVA)
INCLUDE(${CMAKE_ROOT}/Modules/FindJava.cmake)
ENABLE_LANGUAGE(Java)
SET(VISIT_Java_FLAGS -source 1.4)
ENDIF(VISIT_JAVA)
CHECK_INCLUDE_FILES (fcntl.h HAVE_FCNTL_H)
CHECK_INCLUDE_FILES (inttypes.h HAVE_INTTYPES_H)
CHECK_INCLUDE_FILES (malloc.h HAVE_MALLOC_H)
CHECK_INCLUDE_FILES (limits.h HAVE_LIMITS_H)
CHECK_INCLUDE_FILES (memory.h HAVE_MEMORY_H)
CHECK_INCLUDE_FILES (stdint.h HAVE_STDINT_H)
CHECK_INCLUDE_FILES (stdlib.h HAVE_STDLIB_H)
CHECK_INCLUDE_FILES (strings.h HAVE_STRINGS_H)
CHECK_INCLUDE_FILES (string.h HAVE_STRING_H)
CHECK_INCLUDE_FILES (sys/time.h HAVE_SYS_TIME_H)
CHECK_INCLUDE_FILES (sys/types.h HAVE_SYS_TYPES_H)
CHECK_INCLUDE_FILES (sys/stat.h HAVE_SYS_STAT_H)
CHECK_INCLUDE_FILES (unistd.h HAVE_UNISTD_H)
CHECK_INCLUDE_FILES (zlib.h HAVE_ZLIB_H)
CHECK_INCLUDE_FILES (stdbool.h HAVE_STDBOOL_H)
# Configure Mesa support.
IF(NOT WIN32 AND VISIT_MESA_DIR AND NOT VISIT_DBIO_ONLY)
INCLUDE(${VISIT_SOURCE_DIR}/CMake/FindVisItMesa.cmake)
IF(MESA_FOUND)
SET(HAVE_OSMESA 1)
ENDIF(MESA_FOUND)
ENDIF(NOT WIN32 AND VISIT_MESA_DIR AND NOT VISIT_DBIO_ONLY)
# Configure OpenGL support.
IF(NOT VISIT_DBIO_ONLY)
IF(VISIT_OPENGL_DIR)
SET(OPENGL_FOUND ON)
SET(OPENGL_GLU_FOUND ON)
SET(OPENGL_INCLUDE_DIR ${VISIT_OPENGL_DIR}/include)
# Hack for BG/Q. Assume if Mesa has been set and we're telling
# VisIt where to look for GL that we're using Mesa for GL.
IF(HAVE_OSMESA)
SET(LIBGL OSMesa)
ELSE(HAVE_OSMESA)
SET(LIBGL GL)
ENDIF(HAVE_OSMESA)
IF(VISIT_STATIC)
SET(OPENGL_gl_LIBRARY ${VISIT_OPENGL_DIR}/lib/lib${LIBGL}.a)
SET(OPENGL_glu_LIBRARY ${VISIT_OPENGL_DIR}/lib/libGLU.a)
ELSE(VISIT_STATIC)
SET(OPENGL_gl_LIBRARY ${VISIT_OPENGL_DIR}/lib/lib${LIBGL}.so)
SET(OPENGL_glu_LIBRARY ${VISIT_OPENGL_DIR}/lib/libGLU.so)
ENDIF(VISIT_STATIC)
SET(OPENGL_LIBRARIES ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY})
MESSAGE(STATUS "Found OpenGL ${OPENGL_gl_LIBRARY}")
ELSE(VISIT_OPENGL_DIR)
INCLUDE(${CMAKE_ROOT}/Modules/FindOpenGL.cmake)
ENDIF(VISIT_OPENGL_DIR)
ENDIF(NOT VISIT_DBIO_ONLY)
IF(VISIT_R_DIR)
# Configure R support.