# Conflicts: # .gitignore # build-config/meson.build # meson.build # meson_options.txt # src/composition/public/composition.h # src/config/public/config.h # src/constants/public/const.h # src/meson.build # tests/composition_sandbox/comp.cpp
28 lines
541 B
Meson
28 lines
541 B
Meson
# Build the main source code in the correct order
|
|
# Unless you know what you are doing, do not change the order of the subdirectories
|
|
# as there are dependencies which exist between them.
|
|
|
|
# Utility Libraries
|
|
subdir('types')
|
|
subdir('misc')
|
|
subdir('config')
|
|
subdir('probe')
|
|
|
|
# Physically Informed Libraries
|
|
subdir('constants')
|
|
subdir('composition')
|
|
|
|
# Asset Libraries
|
|
subdir('eos')
|
|
subdir('meshIO')
|
|
|
|
# Resouce Manager Libraries
|
|
subdir('resource')
|
|
|
|
# Physics Libraries
|
|
subdir('network')
|
|
subdir('polytrope')
|
|
|
|
# Python Bindings
|
|
subdir('python')
|