Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2019-06-28 16:24:28 +0300
committerVojtech Kral <vojtech@kral.hk>2019-07-26 15:27:37 +0300
commit26c2b16f6169887e277834b11fc5c6f8f5c8845a (patch)
treecbe3bef496131e693f59773f06db1bdc2f283832 /CMakeLists.txt
parent08a90b8c1b925db50ec6c8704ac270bfa6a1d6ff (diff)
Build: Remove SLIC3R_SYNTAXONLY
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt14
1 files changed, 0 insertions, 14 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ba291e450..cbb0e2ec4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -32,7 +32,6 @@ option(SLIC3R_MSVC_COMPILE_PARALLEL "Compile on Visual Studio in parallel" 1)
option(SLIC3R_MSVC_PDB "Generate PDB files on MSVC in Release mode" 1)
option(SLIC3R_PERL_XS "Compile XS Perl module and enable Perl unit and integration tests" 0)
option(SLIC3R_ASAN "Enable ASan on Clang and GCC" 0)
-option(SLIC3R_SYNTAXONLY "Only perform source code correctness checking, no binary output (UNIX only)" 0)
set(SLIC3R_GTK "2" CACHE STRING "GTK version to use with wxWidgets on Linux")
@@ -147,19 +146,6 @@ endif()
if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUXX)
# Adding -fext-numeric-literals to enable GCC extensions on definitions of quad float literals, which are required by Boost.
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fext-numeric-literals" )
-
- if (SLIC3R_SYNTAXONLY)
- set(CMAKE_CXX_ARCHIVE_CREATE "true")
- set(CMAKE_C_ARCHIVE_CREATE "true")
- set(CMAKE_CXX_ARCHIVE_APPEND "true")
- set(CMAKE_C_ARCHIVE_APPEND "true")
- set(CMAKE_RANLIB "true")
- set(CMAKE_C_LINK_EXECUTABLE "true")
- set(CMAKE_CXX_LINK_EXECUTABLE "true")
-
- set(CMAKE_C_COMPILE_OBJECT "<CMAKE_C_COMPILER> -fsyntax-only <DEFINES> <INCLUDES> <FLAGS> -c <SOURCE> && touch <OBJECT>")
- set(CMAKE_CXX_COMPILE_OBJECT "<CMAKE_CXX_COMPILER> -fsyntax-only <DEFINES> <INCLUDES> <FLAGS> -c <SOURCE> && touch <OBJECT>")
- endif ()
endif()
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")