It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i would like to compile my Qt Project in our build server(Windows).
i would like to create a build script that will compile my project in release.
Can someone help me write this build script?
Thanks!
You just have to run qmake and then run make for Unix-like platforms. For release mode add:
CONFIG+=release
to your .pro file or to the qmake command.
Then (spec only if you know you need it):
path_to_your_qmake/qmake [-spec spec] [CONFIG+=release]
make [-jwhatever]
and you're done.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to transfer text file over sftp (winSSH server). how can I do it? I realize that I need to write script and run with windows scheduler. is there any example? pls guide me.
Read a step by step guides how to:
write file transfer script using WinSCP (SFTP client) and
schedule file transfers to SFTP server.
(I'm the author of WinSCP)
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am creating a chess game using Qt and I use OpenGl to create my GUI. My problem is that when I run my program in debugging mode it works well but when I want to run it normally, it does not draw anything. Is it a dll problems? (btw I am NOT using glut)
this is the only library I add in my project:
LIBS += -Opengl32.lib
Use:
LIBS += -L<path to .lib file> \
-lOpengl32
Your .pro syntax is wrong.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to open a file in the folder (/root/Desktop/HTMLFiles/sample.html) as http://localhost/HTMLFiles/sample.html. I'm using a Linux machine.
Can anyone help me?
Thanks in advance,
Gnik
place HTMLFiles under your webroot. If you dont wnat to do that check https://serverfault.com/questions/295975/add-a-directory-to-the-apache-web-root
You most certainly have python installed. I would use the simple HTTP server bundled with Python:
python -m SimpleHTTPServer
Just navigate to the directory you want to serve files from and run that command.
You will be able to see the content at http://127.0.0.1:8000 or http://localhost:8000
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I added dlls. My project get's updated. But My team could not get the updatesfrom Source control. What should I do? Please help
I'm assuming you mean that the project isn't updated in source control.
Are you sure you saved your project's changes? Use Ctrl+Shift+S to save everything (including solution/project files)
Try committing again then. Check the log in your source control tool to make sure that the project files were actually updated in the repository
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm working on a ASP.NET C# project. Why am I not getting the solution(.sln) file of any project.
When I close one project then on my project folder i dont get any .sln file, what is the reason and how to solve it.
You're not seeing a Solution in the Solution explorer?
Go to menu Tools >> Options
Select the tab General (under Projects and Solutions)
Check 'Always show solution'
In VStudio if you create a asp.net project/website the solution is stored in your %USERPROFILE%\my documents\Visual Studio 2005\Projects folder.