Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 10 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -337,3 +337,13 @@ Project page: https://github.com/apache/commons-collections
License: https://github.com/apache/commons-collections/blob/master/LICENSE.txt

--------------------------------------------------------------------------------

The following files include code from SIMDe (SIMD Everywhere) project.

./cpp/third_party/simde-0.8.4-rc3/

Copyright: (c) 2017 Evan Nemerson <evan@nemerson.com>
Project page: https://github.com/simd-everywhere/simde
License: https://github.com/simd-everywhere/simde/blob/master/COPYING (MIT)

--------------------------------------------------------------------------------
7 changes: 7 additions & 0 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,13 @@ if (ENABLE_ZLIB)
add_definitions(-DENABLE_GZIP)
endif()

option(ENABLE_SIMDE "Enable SIMDe (SIMD Everywhere)" OFF)
message("cmake using: ENABLE_SIMDE=${ENABLE_SIMDE}")

if (ENABLE_SIMDE)
add_definitions(-DENABLE_SIMDE)
endif()

# All libs will be stored here, including libtsfile, compress-encoding lib.
set(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/lib)

Expand Down
2 changes: 2 additions & 0 deletions cpp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
<enable.lzokay>ON</enable.lzokay>
<enable.zlib>ON</enable.zlib>
<enable.antlr4>ON</enable.antlr4>
<enable.simde>OFF</enable.simde>
</properties>
<build>
<sourceDirectory>${project.basedir}</sourceDirectory>
Expand Down Expand Up @@ -86,6 +87,7 @@
<option>-DENABLE_LZ4=${enable.lz4}</option>
<option>-DENABLE_LZOKAY=${enable.lzokay}</option>
<option>-DENABLE_ZLIB=${enable.zlib}</option>
<option>-DENABLE_SIMDE=${enable.simde}</option>
</options>
<sourcePath/>
<targetPath/>
Expand Down
5 changes: 5 additions & 0 deletions cpp/third_party/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,9 @@ endif()
if (ENABLE_ZLIB)
add_subdirectory(zlib-1.3.1)
endif()

if (ENABLE_SIMDE)
add_subdirectory(simde-0.8.4-rc3)
endif()

set(CMAKE_POSITION_INDEPENDENT_CODE ON)
Loading
Loading