forked from heavyai/heavydb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
877 lines (742 loc) · 31 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
# fixme: this should be 3.3, but that breaks static ncurses
cmake_minimum_required(VERSION 3.2)
# force `Release` build type if left unspecified
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build." FORCE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo")
endif()
if("${CMAKE_VERSION}" VERSION_GREATER 3.11.999)
cmake_policy(SET CMP0074 NEW)
endif()
find_program(CCACHE_EXE ccache)
if(CCACHE_EXE)
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_EXE}")
endif()
option(ENABLE_IWYU "Enable include-what-you-use" OFF)
if(ENABLE_IWYU)
find_program(IWYU_EXE include-what-you-use)
if(IWYU_EXE)
set(CMAKE_CXX_INCLUDE_WHAT_YOU_USE "${IWYU_EXE}")
endif()
endif()
project(omnisci)
if(NOT EXISTS "${CMAKE_SOURCE_DIR}/Rendering")
set(MAPD_EDITION "OS")
elseif(NOT DEFINED MAPD_EDITION)
set(MAPD_EDITION "EE")
endif()
set(MAPD_EDITION "${MAPD_EDITION}" CACHE STRING "MapD edition" FORCE)
set_property(CACHE MAPD_EDITION PROPERTY STRINGS "EE" "CE" "OS")
add_definitions("-DMAPD_EDITION_${MAPD_EDITION}")
string(TOLOWER "${MAPD_EDITION}" MAPD_EDITION_LOWER)
set(MAPD_VERSION_MAJOR "5")
set(MAPD_VERSION_MINOR "4")
set(MAPD_VERSION_PATCH "0")
set(MAPD_VERSION_EXTRA "dev")
set(MAPD_VERSION_RAW "${MAPD_VERSION_MAJOR}.${MAPD_VERSION_MINOR}.${MAPD_VERSION_PATCH}${MAPD_VERSION_EXTRA}")
set(MAPD_IMMERSE_URL "http://builds.mapd.com/frontend/mapd2-dashboard-v2-137-release-prod.zip")
set(MAPD_DOCS_URL "http://docs.builds.mapd.com/master/docs-master.zip")
string(TIMESTAMP MAPD_BUILD_DATE "%Y%m%d")
if($ENV{BUILD_NUMBER})
set(MAPD_BUILD_NUMBER "$ENV{BUILD_NUMBER}")
else()
set(MAPD_BUILD_NUMBER "dev")
endif()
set(MAPD_VERSION "${MAPD_VERSION_RAW}-${MAPD_BUILD_NUMBER}")
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules")
add_custom_target(clean-all
COMMAND ${CMAKE_BUILD_TOOL} clean
)
option(PREFER_STATIC_LIBS "Prefer linking against static libraries" OFF)
if(PREFER_STATIC_LIBS)
set(CMAKE_FIND_LIBRARY_SUFFIXES .lib .a ${CMAKE_FIND_LIBRARY_SUFFIXES})
set(Boost_USE_STATIC_LIBS ON)
set(OPENSSL_USE_STATIC_LIBS ON)
set(Thrift_USE_STATIC_LIBS ON)
if(${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libgcc -static-libstdc++")
endif()
set(CUDA_USE_STATIC_CUDA_RUNTIME ON CACHE STRING "Use static CUDA runtime")
# On ppc, build failures occur for targets that depend on locale related functions due to unresolved symbols that are
# present in the stdc++ library. Add the library flag to these targets to be used in resolving these symbols.
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "ppc64le")
set(LOCALE_LINK_FLAG "-lstdc++")
endif()
else()
add_definitions("-DBOOST_LOG_DYN_LINK")
endif()
# Required for macOS with Boost 1.71.0+
# See https://gitlab.kitware.com/cmake/cmake/issues/19714
set(Boost_NO_BOOST_CMAKE 1)
option(ENABLE_JAVA_REMOTE_DEBUG "Enable Java Remote Debug" OFF )
if(ENABLE_JAVA_REMOTE_DEBUG)
add_definitions("-DENABLE_JAVA_REMOTE_DEBUG")
endif()
option(ENABLE_CUDA "Enable CUDA support" ON)
if(ENABLE_CUDA)
find_package(CUDA REQUIRED)
include_directories(${CUDA_INCLUDE_DIRS})
list(APPEND CUDA_LIBRARIES ${CUDA_CUDA_LIBRARY})
add_definitions("-DHAVE_CUDA")
set(MAPD_HOST_COMPILER "" CACHE STRING "Host compiler to use with nvcc")
if(NOT "${MAPD_HOST_COMPILER}" STREQUAL "")
set(MAPD_HOST_COMPILER_FLAG "-ccbin=${MAPD_HOST_COMPILER}")
endif()
else()
set(CUDA_LIBRARIES "")
set(MAPD_PACKAGE_FLAGS "${MAPD_PACKAGE_FLAGS}-cpu")
endif()
option(SUPPRESS_NULL_LOGGER_DEPRECATION_WARNINGS "Suppress NullLogger deprecated warnings.")
if (SUPPRESS_NULL_LOGGER_DEPRECATION_WARNINGS)
add_definitions("-DSUPPRESS_NULL_LOGGER_DEPRECATION_WARNINGS")
endif()
option(ENABLE_CUDA_KERNEL_DEBUG "Enable debugging symbols for CUDA device Kernels" OFF)
option(ENABLE_JIT_DEBUG "Enable debugging symbols for the JIT" OFF)
if (ENABLE_JIT_DEBUG)
add_definitions("-DWITH_JIT_DEBUG")
endif()
if(XCODE)
if(ENABLE_CUDA)
set(CMAKE_EXE_LINKER_FLAGS "-F/Library/Frameworks -framework CUDA")
endif()
add_definitions("-DXCODE")
endif()
option(ENABLE_GEOS "Enable GEOS Support" ON)
if (ENABLE_GEOS)
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(ENABLE_GEOS OFF CACHE BOOL "Enable GEOS support" FORCE)
message(STATUS "GEOS functionality is not supported on macOS.")
else()
find_package(GEOS)
if(GEOS_NOTFOUND)
set(ENABLE_GEOS OFF CACHE BOOL "Enable GEOS support" FORCE)
message(STATUS "GEOS not found, disabling support.")
else()
set(GEOS_LIBRARY_FILENAME '"${GEOS_LIBRARY}"')
add_definitions("-DENABLE_GEOS -DGEOS_LIBRARY_FILENAME=${GEOS_LIBRARY_FILENAME}")
set(GEOS_RT_DEFINITIONS "-DENABLE_GEOS")
endif()
endif()
endif()
# fixme: hack works for Homebrew, might not work for Conda
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(OPENSSL_ROOT_DIR "/usr/local/opt/openssl/")
endif()
find_package(OpenSSL REQUIRED)
include_directories(${OPENSSL_INCLUDE_DIR})
find_package(Thrift REQUIRED)
include_directories(${Thrift_INCLUDE_DIRS})
if("${Thrift_VERSION}" VERSION_LESS "0.11.0")
add_definitions("-DHAVE_THRIFT_BOOST_SHAREDPTR")
else()
add_definitions("-DHAVE_THRIFT_STD_SHAREDPTR")
endif()
if("${Thrift_VERSION}" VERSION_LESS "0.13.0")
add_definitions("-DHAVE_THRIFT_PLATFORMTHREADFACTORY")
else()
add_definitions("-DHAVE_THRIFT_THREADFACTORY")
endif()
find_package(Git)
find_package(Glog REQUIRED)
find_package(PNG REQUIRED)
find_package(ZLIB REQUIRED)
find_package(GDAL REQUIRED)
find_package(GDALExtra REQUIRED)
find_package(BLOSC REQUIRED)
list(APPEND GDAL_LIBRARIES ${PNG_LIBRARIES} ${GDALExtra_LIBRARIES})
include_directories(${GDAL_INCLUDE_DIRS})
option(ENABLE_FOLLY "Use Folly" ON)
if(ENABLE_FOLLY)
find_package(Folly)
if(NOT Folly_FOUND)
set(ENABLE_FOLLY OFF CACHE BOOL "Use Folly" FORCE)
else()
include_directories(${Folly_INCLUDE_DIRS})
add_definitions("-DHAVE_FOLLY")
list(APPEND Folly_LIBRARIES ${Glog_LIBRARIES})
endif()
endif()
find_package(Curses REQUIRED)
include_directories(${CURSES_INCLUDE_DIRS})
if (CURSES_HAVE_NCURSES_CURSES_H AND NOT CURSES_HAVE_CURSES_H)
include_directories(${CURSES_INCLUDE_DIRS}/ncurses/)
endif()
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-unused-local-typedefs -fdiagnostics-color=auto -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS")
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated-register")
endif()
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
endif()
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-deprecated-declarations")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated-declarations")
endif()
# address and thread sanitizer
option(ENABLE_STANDALONE_CALCITE "Require standalone Calcite server" OFF)
option(ENABLE_ASAN "Enable address sanitizer" OFF)
option(ENABLE_TSAN "Enable thread sanitizer" OFF)
option(ENABLE_UBSAN "Enable undefined behavior sanitizer" OFF)
if(ENABLE_ASAN)
set(SAN_FLAGS "-fsanitize=address -O1 -fno-omit-frame-pointer")
add_definitions("-DWITH_DECODERS_BOUNDS_CHECKING")
elseif(ENABLE_TSAN)
add_definitions("-DHAVE_TSAN")
# Copy the config directory to the build dir for TSAN suppressions
file(COPY config DESTINATION ${CMAKE_BINARY_DIR})
set(SAN_FLAGS "-fsanitize=thread -fPIC -O1 -fno-omit-frame-pointer")
# required for older GCC, see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64354
add_definitions("-D__SANITIZE_THREAD__")
elseif(ENABLE_UBSAN)
set(SAN_FLAGS "-fsanitize=undefined -fPIC -O1 -fno-omit-frame-pointer")
endif()
if(ENABLE_ASAN OR ENABLE_TSAN OR ENABLE_UBSAN)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${SAN_FLAGS}")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${SAN_FLAGS}")
set(ENABLE_STANDALONE_CALCITE ON)
endif()
# Embedded database
option(ENABLE_DBE "Enable embedded database" OFF)
if(ENABLE_DBE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
set(ENABLE_STANDALONE_CALCITE ON)
add_definitions("-DENABLE_EMBEDDED_DATABASE")
endif()
# Code coverage
option(ENABLE_CODE_COVERAGE "Enable compile time code coverage" OFF)
if(ENABLE_CODE_COVERAGE)
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
set(COVERAGE_FLAGS "-fprofile-instr-generate -fcoverage-mapping")
else()
message(FATAL_ERROR "Code coverage currently only supported with Clang compiler")
endif()
set(CMAKE_CXX_OUTPUT_EXTENSION_REPLACE ON)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${COVERAGE_FLAGS}")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${COVERAGE_FLAGS}")
endif()
option(ENABLE_DECODERS_BOUNDS_CHECKING "Enable bounds checking for column decoding" OFF)
if(ENABLE_STANDALONE_CALCITE)
add_definitions("-DSTANDALONE_CALCITE")
endif()
include_directories(${CMAKE_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/Parser
${CMAKE_CURRENT_BINARY_DIR})
## Dependencies
# LLVM
set(llvm_config_cmd llvm-config)
execute_process(COMMAND ${llvm_config_cmd} "--includedir" OUTPUT_VARIABLE LLVM_INC_FLAGS)
execute_process(COMMAND ${llvm_config_cmd} "--libs" OUTPUT_VARIABLE LLVM_LIB_FLAGS)
execute_process(COMMAND ${llvm_config_cmd} "--ldflags" OUTPUT_VARIABLE LLVM_LD_FLAGS)
execute_process(COMMAND ${llvm_config_cmd} "--version" OUTPUT_VARIABLE LLVM_VERSION_STR)
string(REGEX MATCH "^([0-9]+)" LLVM_VERSION_MAJOR ${LLVM_VERSION_STR})
string(REPLACE "\n" " " LLVM_LINKER_FLAGS "${LLVM_LIB_FLAGS} ${LLVM_LD_FLAGS} ${CURSES_LIBRARIES}")
string(STRIP "${LLVM_LINKER_FLAGS}" LLVM_LINKER_FLAGS)
include_directories(${LLVM_INC_FLAGS})
# Boost
find_package(Boost COMPONENTS log log_setup filesystem program_options regex system thread timer locale iostreams REQUIRED)
include_directories(${Boost_INCLUDE_DIR})
# CUDA architecture flags
set (CUDA_COMPILATION_ARCH
-gencode=arch=compute_35,code=compute_35
-gencode=arch=compute_50,code=compute_50
-gencode=arch=compute_60,code=compute_60
-gencode=arch=compute_70,code=compute_70
-gencode=arch=compute_75,code=compute_75
)
# EGL
include_directories(ThirdParty/egl)
# Google Test and Google Mock
if(NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
add_definitions("-DGTEST_USE_OWN_TR1_TUPLE=0")
endif()
include_directories(ThirdParty/googletest)
add_subdirectory(ThirdParty/googletest)
# Google Benchmark
set(BENCHMARK_ENABLE_TESTING OFF CACHE BOOL "Suppressing benchmark's tests" FORCE)
add_subdirectory(ThirdParty/googlebenchmark)
# Arrow
find_package(Arrow REQUIRED)
add_definitions("-DARROW_NO_DEPRECATED_API")
include_directories(${Arrow_INCLUDE_DIRS})
option(ENABLE_IMPORT_PARQUET "Enable Parquet Importer support" ON)
if(ENABLE_IMPORT_PARQUET)
find_package(Parquet)
if(NOT Parquet_FOUND)
set(ENABLE_IMPORT_PARQUET OFF CACHE BOOL "Enable Parquet Importer support" FORCE)
message(STATUS "Parquet not found. Disabling Parquet Importer support.")
else()
add_definitions("-DENABLE_IMPORT_PARQUET")
# when we found libparquet it means we're using arrow 11+
# and deps scripts must have built parquet as well as snappy
find_package(Snappy REQUIRED)
endif()
endif()
list(APPEND Arrow_LIBRARIES ${Snappy_LIBRARIES})
if (ENABLE_CUDA)
list(INSERT Arrow_LIBRARIES 0 ${Arrow_GPU_CUDA_LIBRARIES})
endif()
# RapidJSON
include_directories(ThirdParty/rapidjson)
add_definitions(-DRAPIDJSON_HAS_STDSTRING)
# Linenoise
add_subdirectory(ThirdParty/linenoise)
# SQLite
include_directories(ThirdParty/sqlite3)
add_subdirectory(ThirdParty/sqlite3)
# rdkafka
find_package(RdKafka REQUIRED)
include_directories(${RdKafka_INCLUDE_DIRS})
# libarchive
find_package(LibArchive REQUIRED)
include_directories(${LibArchive_INCLUDE_DIRS})
# aws-sdk
option(ENABLE_AWS_S3 "Enable AWS S3 support" ON)
if(ENABLE_AWS_S3)
find_package(LibAwsS3)
if(NOT LibAwsS3_FOUND)
set(ENABLE_AWS_S3 OFF CACHE BOOL "Enable AWS S3 support" FORCE)
else()
add_definitions("-DHAVE_AWS_S3")
endif()
endif()
find_package(CURL REQUIRED QUIET)
if(CURL_FOUND)
set(CURL_LIBRARIES ${LibAwsS3_SUPPORT_LIBRARIES})
endif()
# bcrypt
include_directories(ThirdParty/bcrypt)
add_subdirectory(ThirdParty/bcrypt)
# PicoSHA2
include_directories(ThirdParty/PicoSHA2)
if("${MAPD_EDITION_LOWER}" STREQUAL "ee")
# opensaml
option(ENABLE_SAML "Enable SAML support" ON)
if(ENABLE_SAML)
find_package(OpenSaml)
if(NOT OpenSaml_FOUND)
set(ENABLE_SAML OFF CACHE BOOL "Enable SAML support" FORCE)
else()
add_definitions("-DHAVE_SAML")
endif()
endif()
endif()
# TBB
set(TBB_LIBS "")
find_package(TBB)
if(TBB_FOUND)
message(STATUS "Building with TBB support")
add_definitions("-DHAVE_TBB")
list(APPEND TBB_LIBS ${TBB_LIBRARIES})
endif()
add_custom_command(
DEPENDS
${CMAKE_SOURCE_DIR}/omnisci.thrift
${CMAKE_SOURCE_DIR}/common.thrift
${CMAKE_SOURCE_DIR}/completion_hints.thrift
${CMAKE_SOURCE_DIR}/QueryEngine/serialized_result_set.thrift
${CMAKE_SOURCE_DIR}/QueryEngine/extension_functions.thrift
OUTPUT
${CMAKE_BINARY_DIR}/gen-cpp/OmniSci.cpp
${CMAKE_BINARY_DIR}/gen-cpp/OmniSci.h
${CMAKE_BINARY_DIR}/gen-cpp/omnisci_constants.cpp
${CMAKE_BINARY_DIR}/gen-cpp/omnisci_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/common_constants.cpp
${CMAKE_BINARY_DIR}/gen-cpp/common_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/completion_hints_constants.cpp
${CMAKE_BINARY_DIR}/gen-cpp/completion_hints_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/serialized_result_set_constants.cpp
${CMAKE_BINARY_DIR}/gen-cpp/serialized_result_set_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/extension_functions_constants.cpp
${CMAKE_BINARY_DIR}/gen-cpp/extension_functions_types.cpp
COMMAND ${Thrift_EXECUTABLE}
ARGS -gen cpp -r -o ${CMAKE_BINARY_DIR} ${CMAKE_SOURCE_DIR}/omnisci.thrift)
list(APPEND ADDITIONAL_MAKE_CLEAN_FILES ${CMAKE_BINARY_DIR}/gen-cpp/)
add_library(mapd_thrift
${CMAKE_BINARY_DIR}/gen-cpp/OmniSci.cpp
${CMAKE_BINARY_DIR}/gen-cpp/OmniSci.h
${CMAKE_BINARY_DIR}/gen-cpp/omnisci_constants.cpp
${CMAKE_BINARY_DIR}/gen-cpp/omnisci_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/common_constants.cpp
${CMAKE_BINARY_DIR}/gen-cpp/common_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/completion_hints_constants.cpp
${CMAKE_BINARY_DIR}/gen-cpp/completion_hints_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/serialized_result_set_constants.cpp
${CMAKE_BINARY_DIR}/gen-cpp/serialized_result_set_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/extension_functions_constants.cpp
${CMAKE_BINARY_DIR}/gen-cpp/extension_functions_types.cpp
)
target_compile_options(mapd_thrift PRIVATE -fPIC)
target_link_libraries(mapd_thrift ${Thrift_LIBRARIES})
if("${MAPD_EDITION_LOWER}" STREQUAL "ee")
include_directories(Catalog/ee)
include_directories(Distributed/ee)
else()
include_directories(Catalog/os)
include_directories(Distributed/os)
endif()
set(MAPD_RENDERING_LIBRARIES "")
if(NOT "${MAPD_EDITION_LOWER}" STREQUAL "os")
option(ENABLE_RENDERING "Build backend renderer" OFF)
if(ENABLE_RENDERING)
# muparserx - currently render-only
include_directories(ThirdParty/muparserx)
add_subdirectory(ThirdParty/muparserx)
option(ENABLE_RENDER_TESTS "Build backend renderer tests" ON)
add_definitions("-DHAVE_RENDERING")
add_subdirectory(Rendering)
add_subdirectory(QueryRenderer)
include_directories(${RENDERING_INCLUDE_DIRS})
set(MAPD_RENDERING_LIBRARIES QueryRenderer Rendering)
set(MAPD_PACKAGE_FLAGS "${MAPD_PACKAGE_FLAGS}-render")
if(${RENDERER_CONTEXT_TYPE} STREQUAL "GLX")
set(MAPD_PACKAGE_FLAGS "${MAPD_PACKAGE_FLAGS}-glx")
endif()
endif()
else()
set(ENABLE_RENDERING OFF CACHE BOOL "Build backend renderer" FORCE)
endif()
set(TIME_LIMITED_NUMBER_OF_DAYS "30" CACHE STRING "Number of days this build is valid for if build is time limited")
option(TIME_LIMITED_BUILD "Build Time Limited Build" OFF)
if(TIME_LIMITED_BUILD)
list(APPEND TIME_LIMITED_DEFINITIONS "TIME_LIMITED_BUILD")
list(APPEND TIME_LIMITED_DEFINITIONS "TIME_LIMITED_NUMBER_OF_DAYS=${TIME_LIMITED_NUMBER_OF_DAYS}")
set(MAPD_PACKAGE_FLAGS "${MAPD_PACKAGE_FLAGS}-${TIME_LIMITED_NUMBER_OF_DAYS}d")
endif()
option(ENABLE_PROFILER "Enable google perftools" OFF)
if(ENABLE_PROFILER)
find_package(Gperftools REQUIRED COMPONENTS TCMALLOC PROFILER)
set(PROFILER_LIBS ${Gperftools_TCMALLOC} ${Gperftools_PROFILER})
add_definitions("-DHAVE_PROFILER")
else()
set(PROFILER_LIBS "")
endif()
option(ENABLE_FSI "Enable Foreign Storage Interface" OFF)
if(ENABLE_FSI)
add_definitions("-DENABLE_FSI")
endif()
add_subdirectory(SqliteConnector)
add_subdirectory(StringDictionary)
add_subdirectory(Calcite)
get_target_property(CalciteThrift_BINARY_DIR calciteserver_thrift BINARY_DIR)
include_directories(${CalciteThrift_BINARY_DIR})
add_subdirectory(Catalog)
add_subdirectory(Parser)
add_subdirectory(Analyzer)
add_subdirectory(ImportExport)
add_subdirectory(QueryEngine)
add_subdirectory(DataMgr)
add_subdirectory(CudaMgr)
add_subdirectory(LockMgr)
add_subdirectory(MigrationMgr)
add_subdirectory(Fragmenter)
add_subdirectory(Shared)
add_subdirectory(Utils)
add_subdirectory(QueryRunner)
add_subdirectory(SQLFrontend)
add_subdirectory(TableArchiver)
add_subdirectory(ThriftHandler)
add_subdirectory(Distributed)
if(ENABLE_DBE)
add_subdirectory(Embedded)
endif()
option(ENABLE_ODBC "Build ODBC driver" OFF)
if(ENABLE_ODBC)
add_subdirectory(ODBC)
endif()
set(MAPD_LIBRARIES Shared Catalog SqliteConnector MigrationMgr TableArchiver Parser Analyzer ImportExport QueryRunner QueryEngine QueryState LockMgr DataMgr Fragmenter)
if("${MAPD_EDITION_LOWER}" STREQUAL "ee")
list(APPEND MAPD_LIBRARIES Distributed)
if(ENABLE_DISTRIBUTED_5_0)
list(APPEND MAPD_LIBRARIES StringDictionaryThread)
endif()
endif()
list(APPEND MAPD_LIBRARIES Calcite)
if(ENABLE_RENDERING)
add_dependencies(QueryRenderer Parser)
list(APPEND MAPD_LIBRARIES "${MAPD_RENDERING_LIBRARIES}")
endif()
list(APPEND MAPD_LIBRARIES ${Arrow_LIBRARIES})
if(ENABLE_FOLLY)
list(APPEND MAPD_LIBRARIES ${Folly_LIBRARIES})
endif()
if(ENABLE_LICENSING_AWS)
list(APPEND MAPD_LIBRARIES AWSMarketplace)
endif()
list(APPEND MAPD_LIBRARIES ${TBB_LIBS})
option(ENABLE_TESTS "Build unit tests" ON)
if (ENABLE_TESTS)
enable_testing()
add_subdirectory(Tests)
add_subdirectory(SampleCode)
endif()
if(ENABLE_RENDERING AND (ENABLE_TESTS OR ENABLE_RENDER_TESTS))
enable_testing()
add_subdirectory(Tests/RenderTests)
endif()
set(initdb_source_files initdb.cpp)
add_executable(initdb ${initdb_source_files})
set(omnisci_server_source_files MapDServer.cpp ${CMAKE_BINARY_DIR}/MapDRelease.h)
add_executable(omnisci_server ${omnisci_server_source_files})
set_target_properties(omnisci_server PROPERTIES COMPILE_DEFINITIONS "${TIME_LIMITED_DEFINITIONS}")
add_custom_command(
DEPENDS ${CMAKE_SOURCE_DIR}/omnisci.thrift
OUTPUT
${CMAKE_SOURCE_DIR}/java/thrift/src/gen/com/omnisci/thrift/server/OmniSci.java
${CMAKE_SOURCE_DIR}/java/thrift/src/gen/com/omnisci/thrift/server/TRow.java
COMMAND mkdir
ARGS -p ${CMAKE_SOURCE_DIR}/java/thrift/src/gen
COMMAND ${Thrift_EXECUTABLE}
ARGS -gen java -r -out ${CMAKE_SOURCE_DIR}/java/thrift/src/gen/ ${CMAKE_SOURCE_DIR}/omnisci.thrift)
add_custom_command(
DEPENDS ${CMAKE_SOURCE_DIR}/common.thrift
OUTPUT
${CMAKE_SOURCE_DIR}/java/thrift/src/gen/com/omnisci/thrift/server/common.java
COMMAND mkdir
ARGS -p ${CMAKE_SOURCE_DIR}/java/thrift/src/gen
COMMAND ${Thrift_EXECUTABLE}
ARGS -gen java -r -out ${CMAKE_SOURCE_DIR}/java/thrift/src/gen/ ${CMAKE_SOURCE_DIR}/common.thrift)
add_custom_command(
DEPENDS ${CMAKE_SOURCE_DIR}/QueryEngine/serialized_result_set.thrift
OUTPUT
${CMAKE_SOURCE_DIR}/java/thrift/src/gen/com/omnisci/thrift/server/serialized_result_set.java
COMMAND mkdir
ARGS -p ${CMAKE_SOURCE_DIR}/java/thrift/src/gen
COMMAND ${Thrift_EXECUTABLE}
ARGS -gen java -r -out ${CMAKE_SOURCE_DIR}/java/thrift/src/gen/ ${CMAKE_SOURCE_DIR}/QueryEngine/serialized_result_set.thrift)
add_custom_command(
DEPENDS ${CMAKE_SOURCE_DIR}/java/thrift/calciteserver.thrift ${CMAKE_SOURCE_DIR}/completion_hints.thrift ${CMAKE_SOURCE_DIR}/QueryEngine/extension_functions.thrift
OUTPUT ${CMAKE_SOURCE_DIR}/java/thrift/src/gen/com/omnisci/thrift/calciteserver/CalciteServer.java
COMMAND mkdir
ARGS -p ${CMAKE_SOURCE_DIR}/java/thrift/src/gen
COMMAND ${Thrift_EXECUTABLE}
ARGS -gen java -r -I ${CMAKE_SOURCE_DIR} -out ${CMAKE_SOURCE_DIR}/java/thrift/src/gen/ ${CMAKE_SOURCE_DIR}/java/thrift/calciteserver.thrift)
list(APPEND ADDITIONAL_MAKE_CLEAN_FILES ${CMAKE_SOURCE_DIR}/java/thrift/src/gen/)
execute_process(
COMMAND ${GIT_EXECUTABLE} rev-parse --short=10 HEAD
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE MAPD_GIT_HASH
OUTPUT_STRIP_TRAILING_WHITESPACE
)
file(WRITE ${CMAKE_BINARY_DIR}/MAPD_GIT_HASH.txt "${MAPD_GIT_HASH}\n")
file(STRINGS ${CMAKE_BINARY_DIR}/MAPD_GIT_HASH.txt MAPD_GIT_HASH)
set(CPACK_PACKAGE_VERSION "${MAPD_VERSION_RAW}-${MAPD_BUILD_DATE}-${MAPD_GIT_HASH}")
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/Shared/release.h"
"${CMAKE_BINARY_DIR}/MapDRelease.h"
@ONLY
)
list(APPEND ADDITIONAL_MAKE_CLEAN_FILES ${CMAKE_BINARY_DIR}/MAPD_GIT_HASH.txt)
list(APPEND ADDITIONAL_MAKE_CLEAN_FILES ${CMAKE_BINARY_DIR}/MapDRelease.h)
# required to force regen of MAPD_GIT_HASH.txt, MapDRelease.h
add_custom_target(rerun_cmake ALL
COMMAND cmake .
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
)
add_dependencies(omnisci_server rerun_cmake)
target_link_libraries(omnisci_server mapd_thrift thrift_handler ${MAPD_LIBRARIES} ${Boost_LIBRARIES} ${CMAKE_DL_LIBS} ${CUDA_LIBRARIES} ${PROFILER_LIBS} ${ZLIB_LIBRARIES} ${LOCALE_LINK_FLAG})
target_link_libraries(initdb mapd_thrift DataMgr ${MAPD_LIBRARIES} ${Boost_LIBRARIES} ${CMAKE_DL_LIBS} ${CUDA_LIBRARIES} ${ZLIB_LIBRARIES})
macro(set_dpkg_arch arch_in arch_out)
if("${arch_in}" STREQUAL "x86_64")
set(${arch_out} "amd64")
elseif("${arch_in}" STREQUAL "aarch64")
set(${arch_out} "arm64")
elseif("${arch_in}" STREQUAL "ppc64le")
set(${arch_out} "ppc64el")
else()
set(${arch_out} "${arch_in}")
endif()
endmacro()
# clang-tidy
find_program(JQ_EXECUTABLE NAMES jq)
if (NOT ${JQ_EXECUTABLE} STREQUAL "JQ_EXECUTABLE-NOTFOUND")
file(WRITE ${CMAKE_BINARY_DIR}/jq.filter "map(select(.file | test(\".*/(build|ThirdParty)/.*\") | not))")
add_custom_target(clang-tidy
COMMAND mkdir -p clang-tidy
COMMAND ${JQ_EXECUTABLE} -f jq.filter ${CMAKE_BINARY_DIR}/compile_commands.json > clang-tidy/compile_commands.json
COMMAND cd clang-tidy && ${CMAKE_SOURCE_DIR}/ThirdParty/clang/run-clang-tidy.py -quiet -format -fix -header-filter="${CMAKE_SOURCE_DIR}/.*" 2> /dev/null
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
)
else()
message(STATUS "jq not found, disabling clang-tidy target")
endif()
# doxygen
find_package(Doxygen)
if(DOXYGEN_FOUND)
include(${CMAKE_CURRENT_SOURCE_DIR}/docs/CMakeLists.txt)
endif(DOXYGEN_FOUND)
# Packaging
string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LOWER)
if(NOT "${CMAKE_BUILD_TYPE_LOWER}" STREQUAL "debug" AND NOT "${CMAKE_BUILD_TYPE_LOWER}" STREQUAL "relwithdebinfo")
set(CPACK_STRIP_FILES ON)
else()
set(MAPD_PACKAGE_FLAGS "${MAPD_PACKAGE_FLAGS}-debug")
endif()
set(CPACK_PACKAGE_VENDOR "OmniSci, Inc.")
set(CPACK_PACKAGE_CONTACT "[email protected]")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "OmniSci Core Database")
set(CPACK_PROJECT_CONFIG_FILE ${CMAKE_SOURCE_DIR}/CMakePackaging.txt)
set(CPACK_DEBIAN_PACKAGE_DEPENDS "default-jre-headless | openjdk-8-jre-headless | java8-runtime-headless, bsdmainutils, curl | wget")
set(CPACK_RPM_PACKAGE_REQUIRES "java-headless, util-linux, curl")
set(CPACK_RPM_PACKAGE_AUTOREQ OFF)
set(CPACK_RPM_SPEC_MORE_DEFINE "%define __jar_repack %{nil}")
if("${MAPD_EDITION_LOWER}" STREQUAL "ee")
set(CPACK_DEBIAN_PACKAGE_DEPENDS "${CPACK_DEBIAN_PACKAGE_DEPENDS}, libldap-2.4-2")
endif()
if(ENABLE_RENDERING)
set(CPACK_RPM_PACKAGE_REQUIRES "${CPACK_RPM_PACKAGE_REQUIRES}, libX11, libXext")
set(CPACK_DEBIAN_PACKAGE_DEPENDS "${CPACK_DEBIAN_PACKAGE_DEPENDS}, libx11-6, libxext6")
endif()
set_dpkg_arch(${CMAKE_SYSTEM_PROCESSOR} CPACK_DEBIAN_PACKAGE_ARCHITECTURE)
install(DIRECTORY ThirdParty/licenses DESTINATION "ThirdParty/")
# OmniSciTypes.h local includes (for UDF/UDTF)
install(FILES Shared/funcannotations.h DESTINATION "Shared/")
# Frontend
option(MAPD_IMMERSE_DOWNLOAD "Download OmniSci Immerse for packaging" OFF)
set(MAPD_IMMERSE_URL ${MAPD_IMMERSE_URL} CACHE STRING "URL to bundled frontend")
if(MAPD_IMMERSE_DOWNLOAD)
include(ExternalProject)
externalproject_add(frontend
URL ${MAPD_IMMERSE_URL}
PREFIX external
CONFIGURE_COMMAND ""
UPDATE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
LOG_DOWNLOAD on
)
externalproject_get_property(frontend source_dir)
install(DIRECTORY ${source_dir}/ DESTINATION "frontend/" PATTERN .git EXCLUDE PATTERN node_modules EXCLUDE)
add_custom_command(TARGET frontend COMMAND ${CMAKE_COMMAND} -E copy_directory ${source_dir} frontend)
list(APPEND ADDITIONAL_MAKE_CLEAN_FILES ${CMAKE_BINARY_DIR}/frontend)
## Go web server
if("${MAPD_EDITION_LOWER}" STREQUAL "ee" AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/Immerse")
add_subdirectory(Immerse)
endif()
endif()
add_subdirectory(ThirdParty/generate_cert)
# docs
option(MAPD_DOCS_DOWNLOAD "Download OmniSci documentation for packaging" OFF)
set(MAPD_DOCS_URL ${MAPD_DOCS_URL} CACHE STRING "URL to bundled docs")
if(MAPD_DOCS_DOWNLOAD)
include(ExternalProject)
externalproject_add(docs
URL ${MAPD_DOCS_URL}
PREFIX external
CONFIGURE_COMMAND ""
UPDATE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
LOG_DOWNLOAD on
)
externalproject_get_property(docs source_dir)
install(DIRECTORY ${source_dir}/ DESTINATION "docs/" PATTERN .git EXCLUDE)
add_custom_command(TARGET docs COMMAND ${CMAKE_COMMAND} -E copy_directory ${source_dir} docs)
list(APPEND ADDITIONAL_MAKE_CLEAN_FILES ${CMAKE_BINARY_DIR}/docs)
endif()
# systemd
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
if("${MAPD_EDITION_LOWER}" STREQUAL "ee")
install(FILES systemd/omnisci_sd_server.service.in systemd/[email protected] DESTINATION systemd)
install(FILES systemd/omnisci-sds.conf.in DESTINATION systemd)
endif()
install(FILES systemd/omnisci_server.service.in systemd/[email protected] DESTINATION systemd)
install(FILES systemd/omnisci.conf.in DESTINATION systemd)
install(PROGRAMS systemd/install_omnisci_systemd.sh DESTINATION systemd)
endif()
## mvn process for java code
find_program(MVN_EXECUTABLE NAMES mvn)
if(NOT MVN_EXECUTABLE)
message(FATAL_ERROR "mvn not found. Install Apache Maven.")
endif()
file(GLOB_RECURSE JAVA_POM RELATIVE ${CMAKE_SOURCE_DIR} java/**/pom.xml)
file(GLOB_RECURSE JAVA_SOURCES RELATIVE ${CMAKE_SOURCE_DIR} java/**/*.java)
set(OMNISCI_JAR_RELEASE_VERSION "${MAPD_VERSION_MAJOR}.${MAPD_VERSION_MINOR}.${MAPD_VERSION_PATCH}")
if("${MAPD_VERSION_EXTRA}" STREQUAL "dev")
set (OMNISCI_JAR_RELEASE_VERSION "${OMNISCI_JAR_RELEASE_VERSION}-SNAPSHOT")
endif()
set (OMNISCI_JDBC_JAR "omnisci-jdbc-${OMNISCI_JAR_RELEASE_VERSION}.jar")
add_custom_command(
OUTPUT
${CMAKE_BINARY_DIR}/bin/mapd-1.0-SNAPSHOT-jar-with-dependencies.jar
${CMAKE_BINARY_DIR}/bin/${OMNISCI_JDBC_JAR}
${CMAKE_BINARY_DIR}/bin/calcite-1.0-SNAPSHOT-jar-with-dependencies.jar
COMMAND MVNPATH=${CMAKE_SOURCE_DIR}/java ${MVN_EXECUTABLE} -q clean install -Dthrift.version="${Thrift_VERSION}" -Domnisci.release.version="${OMNISCI_JAR_RELEASE_VERSION}"
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/java/mapd/target/mapd-1.0-SNAPSHOT-jar-with-dependencies.jar ${CMAKE_BINARY_DIR}/bin
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/java/omniscijdbc/target/${OMNISCI_JDBC_JAR} ${CMAKE_BINARY_DIR}/bin
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/java/calcite/target/calcite-1.0-SNAPSHOT-jar-with-dependencies.jar ${CMAKE_BINARY_DIR}/bin
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/java
DEPENDS
${CMAKE_SOURCE_DIR}/java/thrift/src/gen/com/omnisci/thrift/server/OmniSci.java
${CMAKE_SOURCE_DIR}/java/thrift/src/gen/com/omnisci/thrift/calciteserver/CalciteServer.java
${CMAKE_SOURCE_DIR}/java/pom.xml
${CMAKE_SOURCE_DIR}/omnisci.thrift
${JAVA_POM}
${JAVA_SOURCES}
)
add_custom_target(mapd_java_components ALL DEPENDS
${CMAKE_BINARY_DIR}/bin/mapd-1.0-SNAPSHOT-jar-with-dependencies.jar
${CMAKE_BINARY_DIR}/bin/${OMNISCI_JDBC_JAR}
${CMAKE_BINARY_DIR}/bin/calcite-1.0-SNAPSHOT-jar-with-dependencies.jar)
add_custom_target(mapd_java_clean
COMMAND MVNPATH=${CMAKE_SOURCE_DIR}/java ${MVN_EXECUTABLE} -q clean -Domnisci.release.version="${OMNISCI_JAR_RELEASE_VERSION}"
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/java
)
add_dependencies(clean-all mapd_java_clean)
install(FILES ${CMAKE_SOURCE_DIR}/java/mapd/target/mapd-1.0-SNAPSHOT-jar-with-dependencies.jar DESTINATION bin)
install(FILES ${CMAKE_SOURCE_DIR}/java/omniscijdbc/target/${OMNISCI_JDBC_JAR} DESTINATION bin)
install(FILES ${CMAKE_SOURCE_DIR}/java/calcite/target/calcite-1.0-SNAPSHOT-jar-with-dependencies.jar DESTINATION bin)
set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${ADDITIONAL_MAKE_CLEAN_FILES}")
install(TARGETS initdb omnisci_server DESTINATION bin)
install(FILES ${CMAKE_BINARY_DIR}/MAPD_GIT_HASH.txt DESTINATION ".")
if(ENABLE_CUDA)
install(FILES ${CMAKE_BINARY_DIR}/QueryEngine/cuda_mapd_rt.fatbin DESTINATION QueryEngine)
endif()
install(FILES completion_hints.thrift DESTINATION ".")
install(FILES omnisci.thrift DESTINATION ".")
install(FILES common.thrift DESTINATION ".")
install(FILES QueryEngine/serialized_result_set.thrift DESTINATION "QueryEngine/")
if(NOT PREFER_STATIC_LIBS)
install(FILES ${Boost_LIBRARIES} DESTINATION ThirdParty/lib)
endif()
if("${MAPD_EDITION_LOWER}" STREQUAL "ee")
set(EULA_FILE "${CMAKE_SOURCE_DIR}/EULA-EE.txt")
else()
set(EULA_FILE "${CMAKE_SOURCE_DIR}/LICENSE.md")
endif()
if("${MAPD_EDITION_LOWER}" STREQUAL "os")
install(FILES LICENSE.md DESTINATION ".")
endif()
set(CPACK_RESOURCE_FILE_LICENSE "${EULA_FILE}")
install(FILES "${EULA_FILE}" DESTINATION ".")
install(PROGRAMS startomnisci DESTINATION ".")
install(PROGRAMS scripts/inneromnisci DESTINATION "scripts")
install(PROGRAMS insert_sample_data DESTINATION ".")
if("${MAPD_EDITION_LOWER}" STREQUAL "ee")
install(DIRECTORY docker/sds DESTINATION "docker")
endif()
install(FILES docker/README.md DESTINATION "docker")
if(ENABLE_CUDA)
install(FILES docker/Dockerfile.cuda RENAME Dockerfile DESTINATION "docker")
else()
install(FILES docker/Dockerfile.cpu RENAME Dockerfile DESTINATION "docker")
endif()
exec_program(uname ARGS -m OUTPUT_VARIABLE MAPD_HOST_SYSTEM_ARCHITECTURE) # does not account for cross-compiling or Windows
set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${MAPD_EDITION_LOWER}-${CPACK_PACKAGE_VERSION}-${CMAKE_SYSTEM_NAME}-${MAPD_HOST_SYSTEM_ARCHITECTURE}${MAPD_PACKAGE_FLAGS}")
set(CPACK_GENERATOR "STGZ")
include(CPack)
if(DOXYGEN_FOUND)
add_custom_target(sphinx
COMMAND python3 -m venv sphinx-env
COMMAND . sphinx-env/bin/activate && pip install -r requirements.txt
COMMAND rm -rf build
COMMAND . sphinx-env/bin/activate && make html SPHINXOPTS="-D version=${MAPD_VERSION_MAJOR}.${MAPD_VERSION_MINOR}.${MAPD_VERSION_PATCH}"
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/docs
)
add_dependencies(sphinx doxygen)
endif(DOXYGEN_FOUND)