diff --git a/components/CMakeLists.txt b/components/CMakeLists.txt index 26add7c0c..3aa723b9f 100644 --- a/components/CMakeLists.txt +++ b/components/CMakeLists.txt @@ -226,7 +226,8 @@ add_component_dir (fallback # Start of tes3mp change (major) # -# Don't require the crashcatcher when building the server +# Don't require the crashcatcher when building on platforms other than Windows or when building only the server, +# as it causes compilation problems if (BUILD_OPENMW OR BUILD_OPENCS) if(WIN32) add_component_dir (crashcatcher @@ -234,10 +235,6 @@ if (BUILD_OPENMW OR BUILD_OPENCS) windows_crashmonitor windows_crashshm ) - elseif(NOT ANDROID) - add_component_dir (crashcatcher - crashcatcher - ) endif() endif() # End of tes3mp change (major)