161 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
271
views
When building qemu through yocto error: ../target/hexagon/meson.build:29:16: ERROR: No build machine compiler for 'target/hexagon/gen_semantics.c'
I'm trying to enable support for am62xx-evm machine through yocto. here is my recipe:
SUMMARY = "QEMU for aarch64 architecture"
DESCRIPTION = "QEMU for emulating the aarch64 ...
0
votes
0
answers
81
views
MS Projects - Macro that grabs certain tasks from subprojects into master
I am looking to build a Macro in MS Projects and am trying to hash it out conceptually first. Any help would be great.
I ultimately want a master project to show each sub project by means of each ...
3
votes
0
answers
276
views
How to build a single subproject from a Meson monorepo?
There is a Meson monorepo (for the record: gstreamer) which contains multiple subprojects.
I am hacking one of the subprojects, and at least at the initial stage I would like to recompile only this ...
1
vote
1
answer
705
views
How can I prevent targets from added subdirectories of external dependencies from being built in CMake?
The structure of my project:
- CMakeLists.txt
- my_src
- extern
- CMakeLists.txt
- dir1
- dir2
"extern" is from a third_party repo. "extern/CMakeList.txt" added "...
0
votes
1
answer
585
views
Excluding plugin apply for certain subprojects in gradle multi-project build
How can I exclude certain subprojects in my multi-project gradle build.
I want to exclude a apply plugin call by querying a property of the subproject.
The build.gradle of my parent project looks like ...
-1
votes
1
answer
60
views
Can I call page in sub project from main project in swift IOS?
I have two project, one with swift and the other with objective-c. I want to call/change page to my sub project (objective c) from my main project (swift) but it says Cannot find type '...
0
votes
1
answer
472
views
There is a way to execute just a Maven subproject?
I am wondering if there is a way to run a Maven subproject alone. I mean, in several code samples you can find a group of maven projects with a common parent. There is a way to replace parent in order ...
1
vote
0
answers
265
views
CMake build only subprojects, but not top-level project
There is top-level project named 'cppserial', which depends on subproject 'cppstreams', which also depends on subproject 'cpputils'.
The file structure of whole project:
cppserial/
|
CMakeLists....
0
votes
1
answer
83
views
gradle subproject dependencies as list of other subprojects
How can I get list of a subproject dependecies as list of Project object?
subproject.dependencies gives list of DependencyHandler objects. And I can't find how extract Project from DependencyHandler.
0
votes
1
answer
1k
views
Modules, Gradle Subprojects, and IntelliJ Woes?
I am trying to make use of modules and gradle subprojects and either receive compile time errors or complaints from IntelliJ.
My project structure is as follows:
Root
- settings.gradle
- core
- ...
3
votes
2
answers
3k
views
Why has GitLab saved one folder of my project as a Subproject commit?
I have started developing a website, saved in my local folders, and I am trying to save it to a GitLab repository. I created a new repository on GitLab and then did the following:
cd existing_folder
...
4
votes
2
answers
743
views
Including 3rd party protobuffer definition files
I have a project that need to create/read protobuf files generated by other projects.
I want dlprimitives to be able to read files formatted as ONNX protobuf and Caffe protobuf
What is the best way to ...
1
vote
0
answers
1k
views
Best practices to build vendored code with CMake
I'm trying to understand what some of the best practices are when using modern CMake (3.13+) with respect to building and including vendored or submoduled code.
Say I'm building a library MyLib. My ...
-1
votes
1
answer
1k
views
Is it possible to build Angular sub-projects without needing to build the entire project?
So, I followed this guide on how to create an application with sub-projects. https://medium.com/disney-streaming/combining-multiple-angular-applications-into-a-single-one-e87d530d6527
I have the main-...
1
vote
1
answer
540
views
How to configure Gradle module name in InteliJ IDEA
I have project with numerous of submodules located in different directories:
enter image description here
How you can see, the module name of IDEA (in []) differs from directory root. I've tried to ...