diff --git a/cmake/compilers/gnu.cmake b/cmake/compilers/gnu.cmake index e46d1318..9a00d3e4 100644 --- a/cmake/compilers/gnu.cmake +++ b/cmake/compilers/gnu.cmake @@ -22,4 +22,6 @@ add_compile_options(-Wno-format-zero-length -Wno-format-nonliteral) # that rely on the compiler not optimising them away, so disable it add_compile_options(-fno-strict-aliasing) -set(CMAKE_INSTALL_PREFIX /opt/quake3) +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX /opt/quake3) +endif()