File tree 3 files changed +18
-1167
lines changed
3 files changed +18
-1167
lines changed Original file line number Diff line number Diff line change
1
+ ** /.DS_Store
1
2
/archived
2
3
thirdParty /cget
3
4
thirdParty /zlib-1.2.8
4
5
thirdParty /bgen /.lock-waf_linux2_build
5
6
thirdParty /bgen /build
6
7
thirdParty /bgen /.hg
8
+ src /* .dylib
7
9
src /* .o
8
10
src /* .so
9
11
src /backup /*
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.1...3.29)
2
2
3
+ project (SAIGE)
4
+
3
5
set (CMAKE_BUILD_TYPE Debug)
4
6
set (CMAKE_CXX_STANDARD 17)
5
7
set (CMAKE_CXX_STANDARD_REQUIRED True )
6
8
set (CMAKE_CXX_EXTENSIONS OFF )
7
9
8
- add_library (VCZ OBJECT VCZ.cpp)
10
+ add_library (vcz SHARED VCZ.cpp)
9
11
10
12
include (FetchContent)
11
13
@@ -22,7 +24,9 @@ FetchContent_MakeAvailable(tensorstore)
22
24
# Define a target that depends on TensorStore...
23
25
24
26
target_link_libraries (
25
- VCZ
27
+ vcz
26
28
PRIVATE
27
29
tensorstore::tensorstore tensorstore::all_drivers
28
30
)
31
+
32
+ install (TARGETS vcz DESTINATION ${CMAKE_SOURCE_DIR} )
You can’t perform that action at this time.
0 commit comments