Skip to content

Commit

Permalink
Merge pull request #40 from c-dilks/full-cmake
Browse files Browse the repository at this point in the history
fix: add new source files to CMake config
  • Loading branch information
gavalian authored Jan 15, 2024
2 parents 032b492 + 2cdbd04 commit dfacdce
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,10 @@ set(HIPO_SOURCE_FILES
hipo4/event.cpp
hipo4/fusion.cpp
hipo4/node.cpp
hipo4/parser.cpp
hipo4/reader.cpp
hipo4/record.cpp
hipo4/recordbuilder.cpp
hipo4/record.cpp
hipo4/tuple.cpp
hipo4/utils.cpp
hipo4/wrapper.cpp
Expand All @@ -104,14 +105,22 @@ set(HIPO_HEADERS
hipo4/datastream.h
hipo4/dictionary.h
hipo4/event.h
hipo4/fizika.h
hipo4/fusion.h
hipo4/hipoexceptions.h
hipo4/json.h
hipo4/jsonutil.h
hipo4/node.h
hipo4/parser.h
hipo4/reaction.h
hipo4/reader.h
hipo4/record.h
hipo4/recordbuilder.h
hipo4/record.h
hipo4/tuple.h
hipo4/twig.h
hipo4/utils.h
hipo4/writer.h)
hipo4/writer.h
)

add_library(hipo4_objs OBJECT ${HIPO_SOURCE_FILES})
add_library(hipo4 SHARED $<TARGET_OBJECTS:hipo4_objs>)
Expand Down

0 comments on commit dfacdce

Please sign in to comment.