Questions tagged [build-script]
204 questions
0
votes
1 answer
Xcode IDE not showing download file in directory using Run Script
I'm having trouble with the 'Run Script' in the Xcode IDE. I'm able to download a file from a server using this script below, straight into a directory in Xcode, which can be viewed, by way of right clicking on the folder in the IDE where the…

Jonas
- 474
- 3
- 17
0
votes
0 answers
Force copy bundle resource of a file in Xcode's new build system
I'm using the Xcode new build system and within the build system, I have a script that creates a file.plist with it as the explicit output and another script that takes in file.plist as input and modifies the file.plist. Then I put file.plist into…

FireDragonMule
- 1,347
- 2
- 16
- 27
0
votes
1 answer
How do I unzip a .zip file in a remote directory using NAnt ftp task?
I have a zip file in my ftp server. Is there any way to unzip it using NAnt?
Here is a sample code of what I would like to do:
Suppose that the…

new coder
- 313
- 2
- 24
0
votes
1 answer
Gradle task not running as demanded (before compiling)
INTRODUCTION
The project is in Kotlin and builds using Gradle. I'm trying to generate a basic data class with some build info, let's say for now that I need it [re]generated every time before running.
Here's the Gradle task I have now:
def…

milosmns
- 3,595
- 4
- 36
- 48
0
votes
2 answers
Build script to copy files from various source folder to various destination folder
The basic requirement is to copy the various files and folders from different solution/project directories to the single build_output folder(/subfolders).
Currently, I am doing this operation using the Robocopy commands. The only issue is my script…

OmGanesh
- 952
- 1
- 12
- 24
0
votes
0 answers
Remove a package via script in xamarin forms
I have a build build script(MyBuild.sh) set up for creating the Android apk for a xamarin forms application.
My requirement is when i give the internal test builds i want the microsoft app center crashes and analytics in the the project csproj but…

George Thomas
- 4,566
- 5
- 30
- 65
0
votes
0 answers
Add reference of a file to host target while runnig xctest
I mocking a class in my test target. This class object is created by another class only one time by passing class name.
Now if I pass my mock class name instead of actual to initialize it, it fails.
Since mock class reference is not added in host…

srus2017
- 394
- 2
- 14
0
votes
1 answer
Fake can't handle if
I have a WPF Project, which I build with FAKE. However, since I am using C# Elements like
if (value is Datatype variable){
//CODE
}
I am no longer able to build the Program but from VS I can run it. I think the Problem is that I use a newer…

Gonzo Gonzales
- 113
- 7
0
votes
1 answer
How can I build Yocto image to using build script?
I need to compile some of program in Yocto and this program compile by build script.
Build script doing make(using MakeFile).
As we know, if we don't using bitbake, Yocto need SDK tools. But I can't using SDK tools. So I have to build by recipe.
It…

Jaekwon Kim
- 29
- 2
- 6
0
votes
1 answer
What's the currently most endorsed/supported web build script engine for Visual Studio 2017 / Code?
After reading this article (English translation here) I wonder what's the current situation for using web build script engines in Visual Studio Code.
What's the currently most endorsed/supported web build script engine for Visual Studio Code?
Is…

AxD
- 2,714
- 3
- 31
- 53
0
votes
1 answer
Sublime Text 3, Build system - How to stop when there is an error
I wrote a custom build system for cc65 compiler. When there is no error it works correctly but the batch script doesn't stop when there is an error.
Even though compiler stopped working and sublime text catches error messages batch script continues…

wizofwor
- 917
- 8
- 25
0
votes
3 answers
Berkeley DB for iPhone
I had tried to create the library for iphone OS 4, but was getting errors.
Here are my build scripts with reference to Berkeley DB Installation guide.
export DEV_iOS=/Developer/Platforms/iPhoneOS.platform/Developer
export…

Ankit Thakur
- 4,739
- 1
- 19
- 35
0
votes
1 answer
VS2008 build solution script with VC++ include and library folder
I am trying to create build script with VS2008
call "%VS90COMNTOOLS%vsvars32.bat" > NUL
echo working on my_solution.sln...
devenv "my_solution.sln" /build "%Release|win32" /out "make.log"
The thing is that I want to add VC++ include file folder and…

pat
- 497
- 3
- 12
0
votes
1 answer
How to copy some buildscript classpath JARs but exclude others in Gradle?
I have buildscript block that references many JARs:
buildscript {
dependencies { classpath "com.github.kulya:jmeter-gradle-plugin:1.3.4-2.13" }
dependencies { classpath "com.eriwen:gradle-css-plugin:2.14.0" }
dependencies { classpath…

isobretatel
- 3,812
- 7
- 34
- 49
0
votes
0 answers
Have cmake build exe and lib from source without creating separate projects in Visual Studio
I currently have a visual studio solution which contains two projects: A game project responsible for building my game application and a gameTester project which runs unit tests on my game code. In the game project I have a post-build script…

Jason
- 2,198
- 3
- 23
- 59