Tagged Questions
4
votes
2answers
405 views
Why is Visual Studio 2012 running custom build step when source file hasn't been changed?
I'm using yacc and lex with Visual Studio 2012 C++/CLI and have created a custom build step for the yacc source file as shown in image below
There are two dependencies for the output file. They ...
1
vote
2answers
107 views
How to detect on compile time if the target .NET runtime is 4.0 or above?
I have read this question but now that we also have 4.5 the solution won't work.
How can I check if the runtime is above 4.0?
Since it's a string I am guessing I cannot do:
<DefineConstants ...
0
votes
1answer
221 views
Using MSBuild's CL task doesn't create executable
I'm trying to build a "Hello World" C program using MSBuild's CL task as follows:
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask TaskName="CL" ...
0
votes
3answers
861 views
How to implement dependency checking for C/C++ sources
I started adding support for a 3rd party toolchain (IAR Compiler) to Visual Studio 2005.
So far I've managed to implement the required msbuild tasks (Compile, Link and Assemble) and the Visual Studio ...
1
vote
4answers
129 views
What is a good way to build a lot of small tools in Visual Studio?
Suppose you have some source code that comes from the unix world. This source consists of a few files which will create a library and a lot of small .c files (say 20 or so) that are compiled into ...