Skip to content

Commit

Permalink
Debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesLorenz committed Oct 22, 2023
1 parent 53ca37b commit 7ceaf0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
deps: "",
config: "cmake .",
build: "cmake --build .",
test: "ctest --output-on-failure"
test: "ctest --output-on-failure --verbose"
}
- {
name: "Ubuntu gcc",
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ endif()
if(WIN32)
#code is position-independent by default on Windows
set(FPIC_FLAG "")
add_compile_options(/wd4244 /wd4267) # lossy conversions
add_compile_options(/wd4244 /wd4267 /wd4305) # lossy conversions
add_compile_options(/wd4996) # "unsafe" functions
endif()
if(NOT WIN32 OR CMAKE_COMPILER_IS_GNUCC)
Expand Down Expand Up @@ -177,7 +177,7 @@ macro(maketestcpp fname)
target_link_libraries(${fname} rtosc-cpp rtosc)
endmacro(maketestcpp)

maketest(rtosc-time)
#maketest(rtosc-time)
maketest(osc-spec)
maketest(simple-messages)
maketest(null-messages)
Expand Down

0 comments on commit 7ceaf0a

Please sign in to comment.