Questions tagged [custom-build-step]
79 questions
0
votes
1 answer
Qt compilation and stylesheet
Each time I compile my Qt project after modifying my qss stylesheet file, the modifications aren't taken into account, unless I rebuild everything.
Any idea on a workaround for this, so that I don't have to wait 5 minutes each time I change my qss…

Yosko
- 329
- 1
- 4
- 15
0
votes
1 answer
Where's the "TEMP" folder for Custom Build Steps?
Visual Studio 2010, in my project I made a custom build step which renames a dll file and copies it to other folder. So, Alt+F7, Config props, Custom Build Step / General, command line:
copy /y $(TargetPath) $(TargetName).node
It didn't do…

Silviu-Marian
- 10,565
- 6
- 50
- 72
0
votes
0 answers
Organize Content Pipeline in Visual Studio
(This is not about the XNA Content Pipeline)
I'm trying to implement a content pipeline using Visual studio, that is:
Project A produces file a
Project B produces file b
a and b are passed to an external compression tool which produces output files…

Opossum
- 482
- 4
- 16
-2
votes
1 answer
Eclipse java debugger: esclude some lines from Step Over
I'm debugging a java source and I want that a group of instructions must be executed at same press of Step Over.
Something like this:
debugcursor -> int a=10;
int b=a+a;
a=b*b;
a++;
And, after pression…

Tommaso DS
- 211
- 2
- 14