We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cmake only adds the /clr option for debug mode. If building a release version just switch on /clr until a cmake solution is implemented.
The text was updated successfully, but these errors were encountered:
@MichaelWallace30 Try and add
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /clr") set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /clr")
into the C# module CMakeLists.txt file.
Also add in
#include <CommProto/debug/comms_debug.h>
inside C# module Comms.cc file. It's missing reference to COMM_DEBUG()
After that, you shouldn't need to do property setting to switch on /clr if you build release version.
Sorry, something went wrong.
No branches or pull requests
Cmake only adds the /clr option for debug mode. If building a release version just switch on /clr until a cmake solution is implemented.
The text was updated successfully, but these errors were encountered: