From 78b244a7701070344534a5ecdab85ef56ec1a954 Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Sun, 22 Jun 2025 15:45:41 -0500 Subject: [PATCH] Update CMakeLists.txt --- zone/CMakeLists.txt | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/zone/CMakeLists.txt b/zone/CMakeLists.txt index e957f79c9..99c31e8b9 100644 --- a/zone/CMakeLists.txt +++ b/zone/CMakeLists.txt @@ -275,9 +275,7 @@ set(lua_sources ) add_library(lua_zone STATIC ${lua_sources}) -if (NOT WIN32) - set_target_properties(lua_zone PROPERTIES UNITY_BUILD ON UNITY_BUILD_BATCH_SIZE 8) -endif() +set_target_properties(lua_zone PROPERTIES UNITY_BUILD ON UNITY_BUILD_BATCH_SIZE 8) # perl unity build set(perl_sources @@ -308,9 +306,7 @@ set(perl_sources ) add_library(perl_zone STATIC ${perl_sources}) -if (NOT WIN32) - set_target_properties(perl_zone PROPERTIES UNITY_BUILD ON UNITY_BUILD_BATCH_SIZE 8) -endif() +set_target_properties(perl_zone PROPERTIES UNITY_BUILD ON UNITY_BUILD_BATCH_SIZE 8) # gm commands set(gm_command_sources @@ -476,9 +472,7 @@ set(gm_command_sources ) add_library(gm_commands_zone STATIC ${gm_command_sources}) -if (NOT WIN32) - set_target_properties(gm_commands_zone PROPERTIES UNITY_BUILD ON UNITY_BUILD_BATCH_SIZE 32) -endif() +set_target_properties(gm_commands_zone PROPERTIES UNITY_BUILD ON UNITY_BUILD_BATCH_SIZE 32) # zone combine sources and headers ADD_EXECUTABLE(zone ${zone_sources} ${zone_headers}) @@ -488,7 +482,6 @@ INSTALL(TARGETS zone RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin) # precompiled headers IF (WIN32 AND EQEMU_BUILD_PCH) - TARGET_PRECOMPILE_HEADERS(zone PRIVATE ../common/pch/std-pch.h) TARGET_PRECOMPILE_HEADERS(zone PRIVATE ../common/pch/app-pch.h) TARGET_PRECOMPILE_HEADERS(zone PRIVATE merc.h mob.h npc.h corpse.h doors.h bot.h entity.h client.h zone.h) ENDIF()