diff options
| author | Mel <einebeere@gmail.com> | 2023-07-07 21:39:42 +0200 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2023-07-07 21:39:42 +0200 |
| commit | f1fc192ddc4c739fa8b4b376c759b7d3218a34eb (patch) | |
| tree | 9e9afb9a21ba3ca27d1f25d46230aa9d27f8be39 /CMakeLists.txt | |
| parent | 24b8124469350d1c80d0553cf3f4bf58cdb1489b (diff) | |
| download | meowcraft-f1fc192ddc4c739fa8b4b376c759b7d3218a34eb.tar.zst meowcraft-f1fc192ddc4c739fa8b4b376c759b7d3218a34eb.zip | |
Chunk-bound tree decoration
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 61b6c34..7f8bfff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,7 +33,7 @@ add_executable(meowcraft src/GFX/Image/PPMParser.cpp src/GFX/Image/PPMParser.hpp src/World/Chunk.cpp src/World/Chunk.hpp src/World/BlockType.hpp - src/World/Generator.cpp src/World/Generator.hpp + src/World/Generation/Generator.cpp src/World/Generation/Generator.hpp src/World/BlockSide.hpp src/World/World.cpp src/World/World.hpp src/World/ChunkIndex.hpp @@ -45,10 +45,14 @@ add_executable(meowcraft src/Compute/Queue.hpp src/Math/Constants.hpp src/Math/Sigmoid.hpp - src/World/ChunkMeshing.cpp - src/World/ChunkMeshing.hpp + src/World/Generation/ChunkMeshing.cpp + src/World/Generation/ChunkMeshing.hpp src/Math/Tensor.hpp src/Math/MatrixZoom.hpp + src/World/Generation/Decoration.cpp + src/World/Generation/Decoration.hpp + src/Math/Random.cpp + src/Math/Random.hpp ) target_link_libraries(meowcraft glfw GLEW::GLEW) |
