Skip to content
Draft
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,7 @@ ext/imgui/docs/
ext/imgui/examples/
ext/imgui/misc/
ext/imgui/.*

# CodeQL
_codeql_build_dir/
_codeql_detected_source_root
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ set(COMP_FILES
src/components/ramachandran/ramachandran.cpp
src/components/shapespace/shapespace.cpp
src/components/dataset/dataset.cpp
src/components/particlesystem/particlesystem.cpp
)

if (VIAMD_ENABLE_VELOXCHEM)
Expand Down Expand Up @@ -138,6 +139,10 @@ set(SHADER_FILES
src/shaders/volume/raycaster.frag
src/shaders/ssao/ssao.frag
src/shaders/ssao/blur.frag
src/shaders/particlesystem/seed_particles.comp
src/shaders/particlesystem/advect_particles.comp
src/shaders/particlesystem/render_particles.vert
src/shaders/particlesystem/render_particles.frag
)

# Bake shaders into a single header file
Expand Down
Loading
Loading