We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
char
1 parent cd1fc64 commit 2cb418dCopy full SHA for 2cb418d
CMakeLists.txt
@@ -18,6 +18,17 @@ cmake_minimum_required(
18
FATAL_ERROR
19
)
20
21
+## For experimental purpose only!
22
+message(
23
+ WARNING
24
+ "Experimental build: Changes the default char type to unsigned!"
25
+)
26
+if(CMAKE_GENERATOR MATCHES "Visual Studio")
27
+ add_compile_options(/J)
28
+else()
29
+ add_compile_options(-funsigned-char)
30
+endif()
31
+
32
#
33
# Now enumerate specific policies newer than ITK_NEWEST_VALIDATED_POLICIES_VERSION
34
# that may need to be individually set to NEW/OLD
0 commit comments