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
  •  
  •  
  •  
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -218,3 +218,14 @@ benchmarks/torch_data
# API docs
api_docs/

cpp/.ext
docs/*.iml
docs/.venv/
docs/env/
docs/site/
/docs/api-js/
docs/*.DS_Store
docs/test.env
docs/.cache/
python/build/*
python/MANIFEST.in
11 changes: 11 additions & 0 deletions cpp/3rd_party/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
set(TIFF_LIBRARY tiff CACHE INTERNAL "")

add_subdirectory(libtiff)
add_subdirectory(openjpeg)
add_subdirectory(sql-parser)
add_subdirectory(rnifti)
add_subdirectory(json)

set(TIFF_INCLUDE_DIR "${${TIFF_LIBRARY}_SOURCE_DIR}" "${${TIFF_LIBRARY}_BINARY_DIR}" CACHE INTERNAL "")
set(3RD_PARTY_LIBS ${TIFF_LIBRARY} openjp2 hsql json PARENT_SCOPE)
set(3RD_PARTY_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/openjpeg/openjp2 ${CMAKE_CURRENT_SOURCE_DIR}/rnifti ${CMAKE_CURRENT_BINARY_DIR}/libtiff PARENT_SCOPE)
369 changes: 369 additions & 0 deletions cpp/3rd_party/cblas.h

Large diffs are not rendered by default.

Loading