Questions tagged [project-files]

101 questions
0
votes
1 answer

Is there a way to run Qt Creator from command line supplying a .pro file to open (or how do we deal with multiple Qt installations)?

I have multiple installations of Qt4 on my Windows XP SP2 machine and have installed Qt Creator 2.1 today. However, running the project (.pro) files spawns the oldest version of Qt Designer installed (the one installed in 2009 together with the rest…
mlvljr
  • 3,660
  • 6
  • 41
  • 60
0
votes
0 answers

Generate Visual Studio Project File to build a library with qmake syntax and where to find the project file?

I have an old script to create Visual Studio Project Files to build libraries. The syntax is cd Kernel cd core qmake -t vclib cd ccMigration qmake -t vclib cd .. and so on for all of the different directories. I understand why we use qmake and…
Lach P.
  • 27
  • 1
  • 7
0
votes
1 answer

Add an include to each module of a Qt project

Is there a portable way to add certain include(s) to all C++ modules that are part of a Qt project by modifying the .pro file (like I would do it for GCC using the -include option)?
Silicomancer
  • 7,280
  • 6
  • 49
  • 101
0
votes
2 answers

Change building directory in .pro

How can i change building directory in qt project file? I tried this: TARGET = project win32: { CONFIG(release, debug|release): DLLDESTDIR += $$PWD/../lib } unix: { CONFIG(release, debug|release): QMAKE_POST_LINK += $$quote(cp project…
garbart
  • 305
  • 1
  • 14
0
votes
1 answer

Visual Studio files in Git

I'm new to Visual Studio and using VS2017. Which Visual Studio project-files (like myproject.sln, etc.) should I check into Git to keep the configuration (include directories, linker options, etc.) when checking out on a different machine? Should I…
0
votes
1 answer

Broken .vcxproj.filter files doesn't break build. What is the best way to maintain .vcxproj.filter files in C++/CLI projects

In C++/CLi projects, we use filter files to organized the file structure which is very useful. But when this vcxproj.filter file is broken (extra tag/broken XML due to merge conflicts not resolve correctly.), it doesn't break the build. The build is…
Ani
  • 4,241
  • 4
  • 23
  • 29
0
votes
1 answer

Why doesn't Visual Studio Build output the Message in the Target element having a custom name?

My project has a different behaviour locally and on production. I have concluded that some Tasks in my .vbproj don't get executed locally neither in DEBUG or RELEASE mode. For example, I have a Message in a element, and it doesn't appear in the…
Razvan
  • 178
  • 2
  • 13
0
votes
1 answer

Where does eclipse keep the information about the sources

Yesterday I've imported some Java files within my Java project (just for being able to compile them into *.class files), I have then removed those files and now my Eclipse is constantly showing the following complaints: Could not move:
Dominique
  • 8,687
  • 9
  • 28
  • 67
0
votes
1 answer

Where can I find old .vb form width and height?

I have some old vb.net forms (can't find out which version they were using when they made them), and I can't find the form's Width and Height in any of the files. The forms don't have a .designer.vb file, and it's not in the .vb "Windows Form…
0
votes
1 answer

TargetFrameworkSDKToolsDirectory - where to add in project file?

In this answer, It says to add C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6 Tools to the CSProj file. I cannot find where in the csproj file to add it -where…
Peter PitLock
  • 1,613
  • 5
  • 27
  • 61
0
votes
1 answer

CMake generated project file to list external source

please consider the following structure: dev_root/ \__ common/ \__ inc/ \__ src/ \__ CMakeLists.txt \__ project1/ \__ inc/ \__ src/ \__ CMakeLists.txt \__ project2/ \__ inc/ \__…
kc2
  • 167
  • 1
  • 10
0
votes
2 answers

Premake: How do you prevent elements from being added to VS2013 project files?

I'm keeping all my source files in a separate location to keep my trunk clean and organized. I simply point to this "SourceCode" location within my lua files but set my "location" to a completely separate "builds" directory. For the most part, this…
0
votes
1 answer

Possible to store build configuration in a file other than solution file?

I work with a solution that has a lot of projects in it. I created a new build configuration to speed up working with it. To speed up compiling, I set most of the projects not to build in my new build configuration. To speed up debugging, I set most…
0
votes
1 answer

VS too many ../../ in reference HintPath

My TFS folder structure has project files four layers deep as according to the example structure below. I reference a Dll that is located in the ThirdPartyLib folder and the file is automatically referenced as:…
GWines
  • 45
  • 8
0
votes
1 answer

vs10 C++ $(MyLibrary) vs %(MyLibrary)

We are using an environment variable to specify a path to a library we use. Most of the time it points to the released version but sometimes to a development version. Anyway, it works ok when I use $(MyLib)/path;%(AdditionalIncludeDirectories) for…
uncletall
  • 5,877
  • 1
  • 21
  • 48