We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecdb901 commit 1a26fdaCopy full SHA for 1a26fda
2 files changed
commandLine/src/projects/VSCodeProject.cpp
@@ -9,8 +9,13 @@
9
#include "ofFileUtils.h"
10
#include "ofLog.h"
11
#include "Utils.h"
12
+#if !defined(TARGET_MINGW)
13
+ #include <json.hpp>
14
+#else
15
+ #include <nlohmann/json.hpp> // MSYS2 : use of system-installed include
16
+#endif
17
+
18
-#include "json.hpp"
19
using json = nlohmann::json;
20
21
struct fileJson {
commandLine/src/projects/xcodeProject.cpp
@@ -1,7 +1,11 @@
1
#include "xcodeProject.h"
2
3
#include "ofUtils.h"
4
5
6
7
8
#include <iostream>
using nlohmann::json;
0 commit comments