The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
45 views

Xcode subproject framework dependency build fail

I have one Xcode iOS project (I'll call it the super project) which contains another Xcode iOS project as a subproject. The subproject is an iOS static library. I have done everything described at ...
0
votes
0answers
24 views

Using subproject's xcdatamodelId in main project

I have in XCode a main project that relies on a subproject to work. The subproject is basically a library that also define a database model, and the way to interact with it. To use the subproject in ...
0
votes
0answers
59 views

Framework headers from PCH file not found when built as a subproject

I have the following project setup: 1) A main iOS project ('super project')... nothing special here, the project was built on top of one of the default iOS templates from Xcode. 2) A second project ...
0
votes
0answers
26 views

Visual Studio Subprojects Issue

I am developing an application that has a root project and its subproject. The application's MasterPage resides in the root project. I'm trying to access the MasterPage in the subproject's content ...
0
votes
0answers
12 views

How to make parent project name of redmine visible?

Currently, The company that I work for introduced Redmine as a issue and project management system. and I'm responsible for the system management. So I made many types of projects which are running ...
0
votes
1answer
26 views

Brakepoints in xcode subproject don't work

We have static lib project, and other "sample" project. I added static lib project as a subproject to "sample" project and also to target dependancy. When I run "sample" brakepoints work properly, but ...
0
votes
0answers
16 views

Which multi projects bugtracker with subprojects management? [closed]

I have many independant software modules, shared across several projects. I'm looking for a bugtracker which can manages bugs on each module. For example: Module A is shared between project 1 and ...
0
votes
0answers
122 views

How to generate worker start script Heroku + Play2.0.4

I have a Play 2.0.4 app with worker code included as a sub-module, per www.playframework.org/documentation/2.0/SBTSubProjects. app controllers views conf modules worker (laid out like a simple ...
0
votes
2answers
343 views

x86 program wants to access AnyCpu instead of x86

I have some problem with AnyCPU vs x86 compiler setting, but if I understand it correctly my problem seems to be the other way around as it is normally. Currently everything is residing on a Win 7 ...
0
votes
0answers
15 views

Directing ViewController To Subproject

I have an existing app and have just added a subproject. I now need to point an exiting view controller to this subproject. I want the subproject to load when a user pushes the tab for this view ...
2
votes
2answers
155 views

Rewrite history git filter-branch create / split into submodules / subprojects

I am currently importing a cvs project into git. After importing, i want to rewrite the history to move an existing directory into a seperate submodule. Suppose i have a structure like this: file1 ...
0
votes
1answer
491 views

playframework 2.0, subproject and routes

I have one PlayfFamework 2.x' (PF2) default scala project (htc-sample) and depended default PF2 scala project (htc) like was shown here: http://www.playframework.org/documentation/2.0/SBTSubProjects ...
0
votes
0answers
128 views

C# Microsoft Project macro example code for adding subproject

I cannot find any example code for adding sub-projects to a Microsoft Project file. I assume its just a variation on adding a standard task, but google searches aren't really helping me. Can anyone ...
1
vote
1answer
83 views

How do I instruct XCODE to find headers in a DERIVED_FILES_DIR of a subproject

I have a static library project that builds .h and .m files and places them into ${DERIVED_FILES_DIR}. This works fine. However, I can't figure out how to reference them when the library project is ...
0
votes
0answers
105 views

Managing multiple sub projects with external files with git

I have a personal project that I want to version control, but I'm not sure how I should use git to manage it. Below is an example of the folder structure: project project/public/plugin1 ...
1
vote
2answers
310 views

unrecognized selector error on methods of a subproject

I have added a 3rd party library as a subproject following the steps under "Usage" section of the following link http://cocoanetics.github.com/DTCoreText/ However, after adding the subproject, my ...
2
votes
1answer
42 views

github - Possible to have a sub-project that only subscribes to part of the target project?

I'd like to set up a git sub-project that pulls in just one file from the target project - I just want to pull in the built JavaScript library from the target project, not the whole project. Is this ...
0
votes
0answers
78 views

Import issue of header file of subproject

I created a subproject (MySubproject) in my main project(TestProject). In subproject I have 1 view controller (subprojectviewcontroller.m). I want to load this VC in my main project. But when I am ...
3
votes
1answer
292 views

Playframework 2.0 with maven and sub-project

I have a project "core" that is mavenized. I have also a play project that uses "core". The play project is also mavenized. So there is a maven parent project that manage both sub-modules. It works ...
1
vote
1answer
251 views

Gradle. How to specify shared configuration for a list of subprojects?

There are subprojects and allprojects properties, but how can I just literally list the known subset of projects? I try the following approach: [project(':child1'), project(':child2')] { ... } ...
1
vote
1answer
118 views

Why does git say a sub project is dirty if I do not have any sub-modules in my repository?

Its a new git repository and all I've done is added a whole lot of code to it. However, it tells me: +Subproject commit 62402f4a7e3aa34a5f22532c8c699836b7ae4967-dirty Based on this question, this ...
3
votes
1answer
1k views

Cross-Project source code reference in Xcode 4

I know you can have Xcode refer to framework / static lib build targets in other projects, but if the project you want to refer to doesn't have a framework / static lib target, can you directly refer ...
4
votes
1answer
1k views

Using static library and bundle products from Xcode 4 subproject

I have a workspace containing 2 projects: A project that has 2 products: a static library and a resource bundle A project that builds an iOS app. The first project has been added as a subproject ...
2
votes
1answer
228 views

Eclipse CDT, cmake, overlapping subproject

I have a CMakeLists.txt that I use to generate Eclipse CDT project files for my project. Now I added a dependencie to my project that has its own CMakeLists.txt. In my own list file I added ...
6
votes
2answers
656 views

Xcode & iPhone - Best way for reusing code within multiple projects?

What is the best way to reuse code within projects? Let's say I implemented a UI Element and I want it to be used in both my iphone and ipad application without having to copy the code over and have ...
2
votes
3answers
139 views

Using git for plugin development

Similar questions to this have already been asked, although they're not exactly what I'm trying to do. At first I thought I needed a git submodule, then to set up a superproject and then a sub tree ...
0
votes
1answer
1k views

Gradle fails injecting dependencies into subprojects using fileTree

Maybe I'm missing something about the way Gradle works. What I have here is a parent project, which only contains configuration, i.e. there won't be any artifact being built when building it, it ...
1
vote
1answer
182 views

How to merge web.configs for ASP.NET MVC and plain ASP.NET app

Merging the web.config files of a legacy ASP.NET App and a new MVC app has pretty much defeated me. Is there a way I can build my solutions with projects sectioned off into subfolders? EG (each ...
2
votes
1answer
198 views

EDE subproject confusion

I've been trying to get subprojects in EDE to work, but I don't understand much and I can't find any good documentation. What would the project configurations have to look like for the following tree: ...
7
votes
3answers
5k views

How to configure a subproject dependency in Maven without deploying jars?

I googled this and it seems that no one has an answer, yet it seems like such an elementary thing that it should be possible. I have the following project structure: parent ---sub-project1 ...
1
vote
2answers
605 views

Visual Studio: How to add existing project using environment variable?

I have a a project that resides on a "thumb drive" (a.k.a. memory stick). Due to Windows ability to change drive letters of thumb drives, I would like to specify the location of sub-projects using an ...
5
votes
3answers
2k views

Specifying a subproject's Configuration in XCode

I have an XCode project (A) referencing another project (B). By default (as far as I understand it) XCode will implicitly build the configuration for the B dependency that matches the configuration of ...
2
votes
2answers
1k views

How do you setup Codeigniter to handle multiple projects with shared ci base?

I've seen several CI implementation examples that claim you can put project folders under the "applications" folder for Codeigniter. However I've not been able to see this work as promised. Here is ...
1
vote
1answer
800 views

Another use-case of splitting a git project into several subprojects

I have split my project into several subprojects But all have a common part (directory with cmake scripts). Moreover some subproject need to include other subprojects (libraries). I would prefer to ...
3
votes
2answers
2k views

ASP.NET MVC How-to use routes when application is published as SubProject of a domain?

i have a webapp which works perfectly when debugged and tested locally. However when I publish the site to a productionserver the routing is messed up. This is because it runs as a sub-project on the ...