Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/samples/demo/posix/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

cmake_minimum_required(VERSION 3.20.0)

project (ocre_sample_demo)
project (ocre_sample_demo LANGUAGES C)

add_executable(ocre_demo
../main.c
Expand Down
2 changes: 1 addition & 1 deletion src/samples/mini/posix/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

cmake_minimum_required(VERSION 3.20.0)

project (ocre_sample_mini)
project (ocre_sample_mini LANGUAGES C)

include(../input_file.cmake)

Expand Down
2 changes: 1 addition & 1 deletion src/samples/static_checks/posix/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

cmake_minimum_required(VERSION 3.20.0)

project (ocre_cmd)
project (ocre_cmd LANGUAGES C)

add_executable(ocre_cmd
ocre.c
Expand Down
2 changes: 1 addition & 1 deletion tests/coverage/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set(CMAKE_C_FLAGS
"-fprofile-instr-generate -fcoverage-mapping"
)

project(OcreTestSourceCoverage)
project(OcreTestSourceCoverage LANGUAGES C)

add_subdirectory(../system/posix OcreSystemTests)

Expand Down
2 changes: 1 addition & 1 deletion tests/leaks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ string(APPEND CMAKE_C_FLAGS
"-fsanitize=address"
)

project(OcreLeaksCheckPosix)
project(OcreLeaksCheckPosix LANGUAGES C)

add_subdirectory(../system/posix OcreSystemTests)

Expand Down
2 changes: 1 addition & 1 deletion tests/system/posix/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if (SANITIZER)
)
endif()

project(OcreSystemTestPosix)
project(OcreSystemTestPosix LANGUAGES C)

add_subdirectory(../../.. ocre)

Expand Down