We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b23123 commit 164cd91Copy full SHA for 164cd91
README.md
@@ -18,6 +18,11 @@ Then add the following line to your `CMakeLists.txt`:
18
add_subdirectory(<path_to_dmath_repo>)
19
20
target_link_libraries(<your_target> dmath)
21
+
22
+if(MSVC)
23
+ # Force multiple definitions to be allowed in MSVC.
24
+ target_link_options(<your_target> PRIVATE /FORCE:MULTIPLE)
25
+endif()
26
```
27
28
## Tested Platforms
0 commit comments