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 Bubnik <bubnikv@gmail.com>2021-02-11 20:02:01 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-02-11 20:02:10 +0300
commitf5b0f844f230eed915fcbefe5d4ff14cca24d96f (patch)
tree7b86452124ac6372343f1fa1d6aacee17908719f /CMakeLists.txt
parent92d0bc2cfd3e3197bb64acace4669c96050311d0 (diff)
Commented on the unsigned/signed char CMake changes
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 517561a9a..98ae4f0c6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -103,6 +103,7 @@ if (MINGW)
endif ()
if (NOT MSVC)
+ # ARMs (Raspberry PI) use an unsigned char by default. Let's make it consistent for PrusaSlicer on all platforms.
add_compile_options(-fsigned-char)
endif ()