-
I successfully downloaded and installed Qt 5.3 for Windows. When I download and try to build QtSharp I get a compile error indicating it isn't loading the CppSharp.Parser. Indeed it isn't. When I a…
-
In Gen.sln, Gen.cs:25
```
ConsoleDriver.Run(new MyLib(p1, p2, p3));
```
throws System.IO.FileNotFoundException. Additional Information: Could not load file or assembly 'CppSharp.Parser.CLI.dll' or o…
nref updated
10 years ago
-
I'm using the known good llvm and clang revisions as listed in the getting started guide however the build still fails. In addition the latest version of premake has a change that results in (I believ…
-
I finished the "Common setup" step
execute:
cd \deps\llvm\build
execute:
cmake -G "Visual Studio 12" -DCLANG_BUILD_EXAMPLES=false -DCLANG_INCLUDE_DOCS=false -DCLANG_INCLUDE_TESTS=false -DCLANG_INCL…
-
Is there somewhere a complete binding for testing?
I cant get it working:
1. Download Qt 5.3.1 for Windows 32-bit (MinGW 4.8.2, OpenGL, 735 MB) form qt-project.org
2. Install to D:\Qt\Qt5.3.1
3. Buil…
KeKl updated
10 years ago
-
Given a simple test library compiled for armeabi-v7a (Android)
_Test.h_
``` c++
namespace Test
{
class TestClass
{
public:
int sum(int a, int b);
};
}
```
and _Test.cpp_
``` c++
names…
-
Still trying to get QtGui to work. I ran into following problem:
C++ "explicit QPaintEngine(PaintEngineFeatures features=0);" transforms into following:
protected QPaintEngine(QPaintEngine.PaintEngi…
-
Hi, I'm trying to make QtSharp work. The base library, QtCore already works, but when generating wrappers to a dependent library, QtGui, it crashes. (Ref. my discussion with the QtSharp maintainer: ht…
-
Last revision known to work in Getting Started is incorrect. It should be at least r213557 ( llvm-mirror/llvm@95689f0845b0b6344d78746522a14790358e49f4 ) due to changes in 76e254e766c3eb99f888d57fa6…
-
In the native header I reference a third party library that uses
```
#include
```
I use
```
options.IncludeDirs.Add("PATH_TO_3RDPARTY_DIR");
```
and
```
ctx.IgnoreHeadersWithName("HEADER_NAME…