main.cpp
.\main.cpp(41) : fatal error C1083: Cannot open include file: 'waylandcompositor.h': No such file or directory
textureblitter.cpp
NMAKE : fatal error U1077: 'D:\qpSOFT\DEVx86\bin\cl.EXE' : return code '0x2'
Stop.
NMAKE : fatal error U1077: 'D:\qpSOFT\DEVx86\bin\nmake.exe' : return code '0x2'
Stop.
NMAKE : fatal error U1077: 'cd' : return code '0x2'
Stop.
You can not compile it under Windows.
What you need is a modern linux which using wayland display server
protocol instead of the old X11 protocol.
Regards,
Debao
2012/4/2 Loaden <loa...@gmail.com>:
> _______________________________________________
> Development mailing list
> Devel...@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/development
>
_______________________________________________
Development mailing list
Devel...@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development
:examples
call :time & echo. & echo 正在编译示例...
for /d %%i in (.\*) do (
for /d %%j in (%%i\*) do (
set t=%%j
set t=!t:~-9!
if "!t!" == "\examples" (
if exist %%j\examples.pro (
cmd /C "cd %%j && qmake CONFIG-=build_all CONFIG+=release && nmake -nologo >>..\..\build.log 2>&1"
if errorlevel 1 goto :EOF
)
)
)
)
call :installExamples
goto :EOF