Skip to content

Commit

Permalink
Continue working on the Coffea demo. (#36)
Browse files Browse the repository at this point in the history
* [WIP] Continue working on the Coffea demo.

* Writing demo.

* Writing demo.

* Writing demo.

* Writing demo.

* Writing demo: looks like it's done.

* Demo is done.

* Writing demo: finished presenting it.
  • Loading branch information
jpivarski authored Dec 20, 2019
1 parent 862ae35 commit a8b4472
Show file tree
Hide file tree
Showing 4 changed files with 890 additions and 198 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ endmacro(addtest)
add_library(awkward-cpu-kernels-objects OBJECT ${CPU_KERNEL_SOURCES})
set_target_properties(awkward-cpu-kernels-objects PROPERTIES POSITION_INDEPENDENT_CODE 1)
add_library(awkward-cpu-kernels-static STATIC $<TARGET_OBJECTS:awkward-cpu-kernels-objects>)
set_property(TARGET awkward-cpu-kernels-static PROPERTY POSITION_INDEPENDENT_CODE ON)
add_library(awkward-cpu-kernels SHARED $<TARGET_OBJECTS:awkward-cpu-kernels-objects>)
set_target_properties(awkward-cpu-kernels-objects PROPERTIES CXX_VISIBILITY_PRESET hidden)
set_target_properties(awkward-cpu-kernels-static PROPERTIES CXX_VISIBILITY_PRESET hidden)
Expand All @@ -47,6 +48,7 @@ set_target_properties(awkward-cpu-kernels PROPERTIES CXX_VISIBILITY_PRESET hidde
add_library(awkward-objects OBJECT ${LIBAWKWARD_SOURCES})
set_target_properties(awkward-objects PROPERTIES POSITION_INDEPENDENT_CODE 1)
add_library(awkward-static STATIC $<TARGET_OBJECTS:awkward-objects>)
set_property(TARGET awkward-static PROPERTY POSITION_INDEPENDENT_CODE ON)
add_library(awkward SHARED $<TARGET_OBJECTS:awkward-objects>)
target_link_libraries(awkward-static PRIVATE awkward-cpu-kernels-static)
target_link_libraries(awkward PRIVATE awkward-cpu-kernels-static)
Expand Down
2 changes: 1 addition & 1 deletion VERSION_INFO
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.33
0.1.36
Loading

0 comments on commit a8b4472

Please sign in to comment.