project

How to create a folder in Visual Studio C++ 2012

那年仲夏 提交于 2019-12-05 11:14:32
问题 I have started my first bigger project with Visual Studio 2012 in C++. I will structure my Source-files in folders, but I can not find where I can create real folders, like in the windows explorer. So here is my question. How can I create real folders in my project? 回答1: The IDE has a command for that, "New Folder". It is even present in the Project + Add context menu, something you can see when you look at the context menu with Tools + Customize. It is however hidden in the C++ IDE.

Adding an Xcode subproject: Shouldn't all the source files get copied?

二次信任 提交于 2019-12-05 08:34:29
I am manually adding the SQLite.swift subproject to my project. As the directions indicated, I copied the .xcodeproj file to my project. This allows me see all the source files (unlike this SO question ). Everything seemed like it was working fine. However, I discovered that the source files of that subproject were not copied to my project. They are still in original location where I downloaded them. Is this by design? What if I want to share my project source code with other people in the future? They won't have the subproject source that is necessary for my project to work. If I do need to

Workspace with multiple projects or one project with multiple targets?

≯℡__Kan透↙ 提交于 2019-12-05 08:16:19
I have 4 iOS apps that are all similar. They're flash card apps, with each app having a different topic. They share a lot of classes and images. Right now I have all 4 of them as separate projects, but I'm looking to simplify maintenance and share resources. Would it be better to have all 4 projects in the same workspace, or have 4 targets in one project? What are some pros/cons of each method? They seem very similar. This is an excerpt of the PDF that Marty posted. It is an excellent document, but 4.4MB and will probably be taken offline after a lot of people download it ;) Trade-Offs of

How do I structure my PHP project?

僤鯓⒐⒋嵵緔 提交于 2019-12-05 07:54:55
I am about to embark upon yet another large PHP project. This time, I intend to have the project folder be tidy! So I have a few questions concerning keeping my project clean and DRY: How do I differentiate between PHP source files and PHP files that should be accessed by the browser? In other words, how do I make it clear which PHP files gives output and which gives function or class definitions? I am planning on separating my PHP functions into static classes, separated by subject, for instance database::create() or editor::write(). What are your thoughts on this? I am planning on creating a

Make Custom Project template in Eclipse IDE

风流意气都作罢 提交于 2019-12-05 07:03:33
I have been using Eclipse IDE for a long time. Its a really great IDE for Java/C/C++ (and other languages with its THOUSANDS of plugins). Every once in a while, I get the need for creating a Javax interface. To do this normally, I would setup the new java project then add what I need. But, wouldn't it be nice if I could just make a template project to automatically include the code for the files. How would I go about doing this? It it even possible? The Eclipse CDT can make a new project type. So can the Google ADT and Google App engine. So I would imagine it is possible. But how? Michael

adding image to eclipse web project

坚强是说给别人听的谎言 提交于 2019-12-05 06:19:55
Well, this is embarrasing...I can't seem to be able to add a humble image to a java web project in eclipse. What I did was that I created a folder called images inside WebContent, and then tried adding it in two ways, directly pasting it and using add/file, and advanced, which basically asks for a route to the image insider the hard drive. The HTML syntax is here: <img border="0" src="WebContent/images/network.jpg" alt="Pulpit rock" width="304" height="228"> I tried it with and without WebContent. I am sure there's something I'm missing, but after a couple hours decided to get help. Thanks in

How to include source files of one project in another project?

送分小仙女□ 提交于 2019-12-05 04:21:39
I'm writing a class library in C#/.NET. I need to compile it for two different frameworks: 4.0 (using for debug myself) 3.5 (using on client). I want to have one set source files for the two projects, so I can make corrections in 1 copy of files and they are included in the other project automatically. Now, if I even use "add existing item", VS 2010 creates copies; and I need to copy the latest versions every time. I can't just change a target in project, because I'm using different versions of .dll references, and because ms vs has some quirks. One option is to use the Add As Link options

Errors running builder &apos;DeploymentBuilder&apos; on proj

那年仲夏 提交于 2019-12-05 03:13:41
早上打开myEclipse就会报 Errors running builder 'DeploymentBuilder' on project '工程名' xxxNullpointException 的错误。找了半天,也没有解决方法。终于找到一个看似靠谱的博客 http://5666522.blog.51cto.com/5656522/1238898 解决了该问题 解决方法如下: 1、首先关闭MyEclipse工作空间。 2、然后删除工作空间下的 “/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.genuitec.eclipse.ast.deploy.core.prefs” 这个文件。在这个文件中存储了一些部署项目的信息。删了这个部署的项目的信息就没有错误了。 3、重启启动MyEclipse即可解决了。 来源: oschina 链接: https://my.oschina.net/u/2279005/blog/637070

Eclipse Luna “cannot determine URI for /project/src/com/…/classFile.java” (windows 8)

夙愿已清 提交于 2019-12-05 02:54:24
Just installed Eclipse LUNA, and converted my old JUNO workspace. It worked on one of my computers fine (win7), but using the same project on my other computer (win8, synced via dropbox) created this issue for all opened files, and nothing shows up in my package explorer. Always worked fine with JUNO. Inside package explorer, right click -> import -> General -> Existing Projects into Workspace -> next -> find your project in "Select root directory" -> Finish. If only some projects or files are missing or the above doesn't work then a similar method using General/File System can be used where

What should I do about xcuserdata directories with my old username?

橙三吉。 提交于 2019-12-04 23:30:58
(I have a mac running Mountain Lion with Xcode 4.5.2) I changed my username a while ago, and Xcode has started recreating xcuserdata directories with the new username at $path_to_.xcodeproj/xcuserdata/blackl.xcuserdatad . I've been working with it like that since, and I can't remember if anything seemed to have reset after the change, so whatever was in there must not have been too important… What does Xcode store in xcuserdata and what should I do about the old ones? There are some old projects I haven't opened since the change; I could just rename the directories in those. Newer projects