Skip to content

Commit

Permalink
Remove unity build option
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-johansson committed Aug 23, 2024
1 parent e210390 commit e1a6019
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ jobs:
-DTACTILE_BUILD_ZSTD_COMPRESSION=ON \
-DTACTILE_BUILD_OPENGL_RENDERER=ON \
-DTACTILE_BUILD_VULKAN_RENDERER=OFF \
-DTACTILE_UNITY_BUILD=OFF \
-DTACTILE_USE_LTO=OFF \
-DTACTILE_USE_PRECOMPILED_HEADERS=ON \
--log-level=DEBUG
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ jobs:
-DTACTILE_BUILD_ZSTD_COMPRESSION=ON \
-DTACTILE_BUILD_OPENGL_RENDERER=ON \
-DTACTILE_BUILD_VULKAN_RENDERER=OFF \
-DTACTILE_UNITY_BUILD=OFF \
-DTACTILE_USE_LTO=OFF \
-DTACTILE_USE_PRECOMPILED_HEADERS=ON \
--log-level=DEBUG
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ jobs:
-DTACTILE_BUILD_ZSTD_COMPRESSION=ON `
-DTACTILE_BUILD_OPENGL_RENDERER=ON `
-DTACTILE_BUILD_VULKAN_RENDERER=OFF `
-DTACTILE_UNITY_BUILD=OFF `
-DTACTILE_USE_LTO=OFF `
-DTACTILE_USE_PRECOMPILED_HEADERS=ON `
--log-level=DEBUG
Expand Down
2 changes: 0 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ option(TACTILE_BUILD_ZSTD_COMPRESSION "Build with Zstd compression support" ON)
option(TACTILE_BUILD_OPENGL_RENDERER "Build the OpenGL renderer" OFF)
option(TACTILE_BUILD_VULKAN_RENDERER "Build the Vulkan renderer" OFF)
option(TACTILE_MACOS_APP_BUNDLE "Build the editor as a macOS application bundle (.app)" OFF)
option(TACTILE_UNITY_BUILD "Enable unity builds" OFF)
option(TACTILE_USE_LTO "Enable link-time optimizations" OFF)
option(TACTILE_USE_PRECOMPILED_HEADERS "Enable precompiled standard headers" ON)

Expand All @@ -28,7 +27,6 @@ message(DEBUG "TACTILE_BUILD_ZSTD_COMPRESSION: ${TACTILE_BUILD_ZSTD_COMPRESSION}
message(DEBUG "TACTILE_BUILD_OPENGL_RENDERER: ${TACTILE_BUILD_OPENGL_RENDERER}")
message(DEBUG "TACTILE_BUILD_VULKAN_RENDERER: ${TACTILE_BUILD_VULKAN_RENDERER}")
message(DEBUG "TACTILE_MACOS_APP_BUNDLE: ${TACTILE_MACOS_APP_BUNDLE}")
message(DEBUG "TACTILE_UNITY_BUILD: ${TACTILE_UNITY_BUILD}")
message(DEBUG "TACTILE_USE_LTO: ${TACTILE_USE_LTO}")
message(DEBUG "TACTILE_USE_PRECOMPILED_HEADERS: ${TACTILE_USE_PRECOMPILED_HEADERS}")

Expand Down
1 change: 0 additions & 1 deletion cmake/tactile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ function(tactile_set_properties target)
CXX_EXTENSIONS "OFF"
CXX_STANDARD_REQUIRED "ON"
POSITION_INDEPENDENT_CODE "ON"
UNITY_BUILD "${TACTILE_UNITY_BUILD}"
INTERPROCEDURAL_OPTIMIZATION "${TACTILE_USE_LTO}"
PREFIX ""
)
Expand Down

0 comments on commit e1a6019

Please sign in to comment.