Questions tagged [depends]
69 questions
0
votes
1 answer
When is scons "Depends" useful when compiling c/cpp files?
Any c/cpp files can call functions defined in other module, only linking phase resolve them. These c/cpp files don't depend on each other for compiling sequence.
So my question is, is there any case that one c/cpp file should depend on another one,…

Troskyvs
- 7,537
- 7
- 47
- 115
0
votes
0 answers
DLL cannot be found when I specify the path and the dll has no missing dependencies
I am writing a program which refers to a dll using the words "Declare"
Whenever I run the program I get an error saying "File not found: x.dll". I tried specifying the whole path, still an error. I tried registering the dll, gives me an error.
I…

Julio Garcia
- 393
- 2
- 7
- 22
0
votes
2 answers
Is there a function in R that return Package Depends, Imports and LinkingTo?
In CRAN, each package has Package Depends, Imports and LinkingTo http://cran.r-project.org/web/packages/Rcpp/index.html. Is there a build-in function or a function from an R package that can return the same information? Thanks.

user1424739
- 11,937
- 17
- 63
- 152
0
votes
1 answer
run target in ant that depends on jar
I have a jar target in ant that makes a jar out of two classes that I have. Then, I want to run this jar in another target that depends on the jar target. Would there be an easy way to do this in ant? I have my compile and jar targets pasted…

John
- 139
- 1
- 12
0
votes
1 answer
Order of execution of targets in NAnt
From the NAnt help page (http://nant.sourceforge.net/release/latest/help/fundamentals/targets.html):
NAnt tries to execute the targets in the depends attribute in the
order they appear from left to right. It is possible that a target
can get…

Nilay Vishwakarma
- 3,105
- 1
- 27
- 48
0
votes
0 answers
jQuery .validate : Make a field required unless a false returned from remote
My mission is to make a field a required field, but if a ajax/remote call returns a false then to cancel that required field order. I have been playing about for days now trying to solve this.
I have tried using depends in many different ways, and…

Oliver Tsang
- 11
- 5
0
votes
2 answers
Load configuration files from a different project at runtime
I have a project, TestA, that depends on another project, TestB and this is mentioned in the pom.xml. Now, I need to load a few configuration files that are present in TestB from TestA at runtime. Any idea how to do it?

Kathy
- 96
- 2
- 9
0
votes
2 answers
Export Functions of DLL's as seen by depends
I was looking over the list of functions that were exported from a dll using depends and i noticed some weird symbols included with the names. They are of the format
??0Function Name@@QEAA@AEBV0@@Z
Also 0 maybe replaced by some other number.
The…

Desert Ice
- 4,461
- 5
- 31
- 58
-1
votes
1 answer
Time change depends on day
I would like to create a script where time which you will get depends on the day.
f it's a normal week day it should echo the current date but time < 4pm if the time is >4pm that it should echo +2 day. But if today is Friday and the is >4pm and…

Gaven
- 21
- 1
- 6