modified preferences, added debug macros
continuous-integration/drone/push Build encountered an error
Details
continuous-integration/drone/push Build encountered an error
Details
parent
704945b00e
commit
498f2c4f40
@ -0,0 +1,4 @@
|
||||
{
|
||||
"cmake.sourceDirectory": "${workspaceFolder}/Sources/src/Visnode",
|
||||
"cmake.configureOnOpen": false
|
||||
}
|
Binary file not shown.
@ -1,6 +1,7 @@
|
||||
set(thredweaver_source_files
|
||||
threadweaver.cpp
|
||||
threadweaver.hpp
|
||||
debugging.hpp
|
||||
)
|
||||
MESSAGE(STATUS "building threadweaver")
|
||||
add_library(threadweaver ${thredweaver_source_files})
|
||||
|
@ -0,0 +1,9 @@
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
#define DBGMODE
|
||||
|
||||
#define DBGPRINT(x) do { \
|
||||
if (DBGMODE) { std::cerr << x << std::endl; } \
|
||||
} while (0)
|
||||
|
Loading…
Reference in new issue