diff --git a/CMakeLists.txt b/CMakeLists.txt index 0bf9e90..21344ed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ set(CJSON_VERSION_SO 1) set(CJSON_UTILS_VERSION_SO 1) set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") -option(ENABLE_CUSTOM_COMPILER_FLAGS ON) +option(ENABLE_CUSTOM_COMPILER_FLAGS "Enables custom compiler flags for Clang and GCC" ON) if (ENABLE_CUSTOM_COMPILER_FLAGS) if(("${CMAKE_C_COMPILER_ID}" MATCHES "GNU") OR ("${CMAKE_C_COMPILER_ID}" MATCHES "Clang")) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c89 -pedantic -Wall -Wextra -Werror -Wstrict-prototypes -Wwrite-strings") diff --git a/Makefile b/Makefile index b633c80..9326886 100644 --- a/Makefile +++ b/Makefile @@ -62,15 +62,15 @@ test: tests ./$(UTILS_TEST) .c.o: - $(CC) -ansi -pedantic -c $(R_CFLAGS) $< + $(CC) -c $(R_CFLAGS) $< #tests #cJSON $(CJSON_TEST): cJSON.c cJSON.h test.c - $(CC) $^ -o $@ $(LDLIBS) -I. + $(CC) $(R_CFLAGS) $^ -o $@ $(LDLIBS) -I. #cJSON_Utils $(UTILS_TEST): cJSON.c cJSON.h test.c - $(CC) $^ -o $@ $(LDLIBS) -I. + $(CC) $(R_CFLAGS) $^ -o $@ $(LDLIBS) -I. #static libraries #cJSON