diff options
Diffstat (limited to 'vcpkg/scripts/test_ports/vcpkg-ci-orange-math/project/main.cpp')
| -rw-r--r-- | vcpkg/scripts/test_ports/vcpkg-ci-orange-math/project/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vcpkg/scripts/test_ports/vcpkg-ci-orange-math/project/main.cpp b/vcpkg/scripts/test_ports/vcpkg-ci-orange-math/project/main.cpp new file mode 100644 index 0000000..ae7779f --- /dev/null +++ b/vcpkg/scripts/test_ports/vcpkg-ci-orange-math/project/main.cpp @@ -0,0 +1,8 @@ +#include <omath/omath.hpp>
+
+int main()
+{
+ omath::Vector2 w = omath::Vector2(20.0, 30.0);
+ return 0;
+}
+
|