From a8fa9fe920d4ed48ed1b88a6e585cdbff648039e Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 16 Mar 2025 20:18:16 +0500 Subject: Improved terrain generation - features! [1/2] - @reglnk asked me to commit this early to experiment with this weird-ass heightmap bug that messes with tree placement --- game/shared/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'game/shared/CMakeLists.txt') diff --git a/game/shared/CMakeLists.txt b/game/shared/CMakeLists.txt index cd3eed4..b0cd086 100644 --- a/game/shared/CMakeLists.txt +++ b/game/shared/CMakeLists.txt @@ -12,6 +12,8 @@ add_library(shared STATIC "${CMAKE_CURRENT_LIST_DIR}/dimension.hh" "${CMAKE_CURRENT_LIST_DIR}/factory.cc" "${CMAKE_CURRENT_LIST_DIR}/factory.hh" + "${CMAKE_CURRENT_LIST_DIR}/feature.cc" + "${CMAKE_CURRENT_LIST_DIR}/feature.hh" "${CMAKE_CURRENT_LIST_DIR}/game_items.cc" "${CMAKE_CURRENT_LIST_DIR}/game_items.hh" "${CMAKE_CURRENT_LIST_DIR}/game_voxels.cc" -- cgit