Skip to content

Commit

Permalink
Add standard to c script for tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Jun 8, 2023
1 parent b4a590f commit 022a770
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion source/scripts/c/libloadtest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
c_project(libloadtest 0.1.0)

# Build the library
add_library(c-libloadtest-shared SHARED
set(target c-libloadtest-shared)

add_library(${target} SHARED
source/libloadtest.cpp
source/libloadtest.h
)

set_property(TARGET ${target} PROPERTY CXX_STANDARD 11)

0 comments on commit 022a770

Please sign in to comment.