Skip to content

Commit

Permalink
C projects should use CC flags rather than CXX flags to set flags tha…
Browse files Browse the repository at this point in the history
…t are applicable to either C or C++
  • Loading branch information
SuperOptimizer committed Dec 28, 2024
1 parent 37af99b commit 5d1cad7
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions examples/SDL2-video-demo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ target_link_libraries(SDL2_video_demo PUBLIC
SDL2::SDL2-static
SDL2_ttf::SDL2_ttf-static
)
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Werror -DCLAY_DEBUG")
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
set(CMAKE_CC_FLAGS_DEBUG "-Wall -Werror -DCLAY_DEBUG")
set(CMAKE_CC_FLAGS_RELEASE "-O3")

add_custom_command(
TARGET SDL2_video_demo POST_BUILD
Expand Down
4 changes: 2 additions & 2 deletions examples/cairo-pdf-rendering/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ target_compile_options(clay_examples_cairo_pdf_rendering PUBLIC)
target_include_directories(clay_examples_cairo_pdf_rendering PUBLIC .)

target_link_libraries(clay_examples_cairo_pdf_rendering PUBLIC cairo)
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Werror")
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
set(CMAKE_CC_FLAGS_DEBUG "-Wall -Werror")
set(CMAKE_CC_FLAGS_RELEASE "-O3")

add_custom_command(
TARGET clay_examples_cairo_pdf_rendering POST_BUILD
Expand Down
2 changes: 1 addition & 1 deletion examples/clay-official-website/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ add_executable(clay_official_website main.c)
target_compile_options(clay_official_website PUBLIC -Wall -Werror -Wno-unknown-pragmas)
target_include_directories(clay_official_website PUBLIC .)

set(CMAKE_CXX_FLAGS_RELEASE "-O3")
set(CMAKE_CC_FLAGS_RELEASE "-O3")
4 changes: 2 additions & 2 deletions examples/cpp-project-example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ add_executable(clay_examples_cpp_project_example main.cpp)

target_include_directories(clay_examples_cpp_project_example PUBLIC .)

set(CMAKE_CXX_FLAGS_DEBUG "-Werror -Wall")
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
set(CMAKE_CC_FLAGS_DEBUG "-Werror -Wall")
set(CMAKE_CC_FLAGS_RELEASE "-O3")
4 changes: 2 additions & 2 deletions examples/introducing-clay-video-demo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ target_compile_options(clay_examples_introducing_clay_video_demo PUBLIC)
target_include_directories(clay_examples_introducing_clay_video_demo PUBLIC .)

target_link_libraries(clay_examples_introducing_clay_video_demo PUBLIC raylib)
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Werror -DCLAY_DEBUG")
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
set(CMAKE_CC_FLAGS_DEBUG "-Wall -Werror -DCLAY_DEBUG")
set(CMAKE_CC_FLAGS_RELEASE "-O3")

add_custom_command(
TARGET clay_examples_introducing_clay_video_demo POST_BUILD
Expand Down
4 changes: 2 additions & 2 deletions examples/raylib-sidebar-scrolling-container/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ target_compile_options(clay_examples_raylib_sidebar_scrolling_container PUBLIC)
target_include_directories(clay_examples_raylib_sidebar_scrolling_container PUBLIC .)

target_link_libraries(clay_examples_raylib_sidebar_scrolling_container PUBLIC raylib)
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Werror -DCLAY_DEBUG")
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
set(CMAKE_CC_FLAGS_DEBUG "-Wall -Werror -DCLAY_DEBUG")
set(CMAKE_CC_FLAGS_RELEASE "-O3")

add_custom_command(
TARGET clay_examples_raylib_sidebar_scrolling_container POST_BUILD
Expand Down

0 comments on commit 5d1cad7

Please sign in to comment.