blob: 06509bca4d1651b62566d0c2bb1269044265f79b (
plain)
1
2
3
4
5
6
7
8
9
|
--- a/apps/projectGenerator/commandLine/src/utils/LibraryBinary.cpp
+++ b/apps/projectGenerator/commandLine/src/utils/LibraryBinary.cpp
@@ -1,6 +1,7 @@
#include "LibraryBinary.h"
#include "ofFileUtils.h"
+#include <algorithm>
const std::vector<std::string> LibraryBinary::archs { "x86", "Win32", "x64", "armv7", "ARM64", "ARM64EC" };
const std::vector<std::string> LibraryBinary::targets{ "Debug", "Release" };
|