Tagged Questions
The external-library tag has no wiki summary.
9
votes
4answers
188 views
How should external DLL files be versioned
Whenever we add a DLL as reference to our project, the source location is always referenced and if that happens to be outside our project folders, someone checking out the latest code-base will not be ...
6
votes
2answers
348 views
How to eliminate external lib/third party warnings in GCC
In the software project I'm working on, we use certain 3rd party libraries which, sadly, produce annoying gcc warnings.
We are striving to clean all code of warnings, and want to enable the ...
6
votes
3answers
323 views
Best practices for wrapping an external library
Our code base uses several external libraries, in order to save time and focus on developing important features instead of reinventing the wheel.
Currently the code is littered with direct usage of ...
5
votes
3answers
78 views
Python - Change Program Flow based on Available Libraries
I am developing a python model that will support graphing if the correct modules are installed. I would like the source code to be the same if possible, IE, if the graphing model can't load, graphing ...
4
votes
2answers
1k views
Is -Djava.library.path=… equivalent to System.setProperty(“java.library.path”, …)
I load an external library that is placed in ./lib. Are those two solutions to set the java.library.path equivalent?
1) set path in console when executing jar:
java -Djava.library.path=./lib -jar ...
2
votes
2answers
90 views
Graphing Library for Python — No install
I am writing a model for an engineering course. I developed the model and everything related to it in python, and now would like to display my output in a graph, instead of just the values in a ...
2
votes
1answer
168 views
Using resource like @android:drawable in xml
When we use Android internal resources-images, we can use "@android:drawable/alert_dark_frame" as a resource. My question is that : is it possible to use an external resource (jar or lib project) in ...
2
votes
1answer
216 views
Standalone Video-Chat Application Java
I want to make a standalone Video-Chat program in Java. I'm looking for a good external library and I think I've decided on JMyron. The problem is that, first I can't figure out how to implement it ...
1
vote
0answers
527 views
Android NDK - problem linking an external library (can't found it)
I am working with Android NDK r6b under cygwin (the system is updated correctly). I am modifying the hello-jni sample in order to learn working with NDK. Since i have a library written in C++ that i ...
1
vote
3answers
238 views
Should external libraries be inside or outside my PHP project directory structure?
I'm building my first PHP project, and am not sure where to put external libraries like doctrine. I could put them inside my app, making it easier to reference with a relative path:
myproject
app
...
1
vote
1answer
674 views
(External) Java library for creating Tree structure?
I am planning to implement a tree structure where every node has two children and a parent along with various other node properties (and I'd want to do this in Java )
Now, the way to it probably is ...
1
vote
2answers
1k views
Blink/Flash effect or animation in gwt
I'm building an web intra-net application which has the need for a flashing/blinking button (this has been discussed in depth and is our design decision so please do not lecture me about it). Our UI ...
1
vote
3answers
408 views
How do I create a movie from images using .NET
In fact, the question says it all. I have a lot of images (JPGs) and I want to create a movie from them programmatically. Is there any such library for .NET(preferrably free) through which I can do ...
0
votes
0answers
61 views
TFS build with external links
i am having some difficulties building solution.
I got this error, when i use Team build.
API restriction: The assembly 'file:///C:\Builds\1[CENZOR:)]\Binaries\NMock\NMock2.Test.dll' has already ...
0
votes
1answer
52 views
I've imported a .jar file into my android project, Eclipse seems to recognise the packages but names are crossed out?
I imported the xerxesImpl.jar into my android project, seems to recognise it when I use it i.e. lists all available methods, but the names are crossed out.. Does anyone know why this is?
0
votes
0answers
107 views
android ndk how to link external library
I've been looking for answers on how to link external library into Android apps using NDK, but I still couldn't get my apps to work.
I have 2 projects in my apps, which is Project A (the main ...
0
votes
1answer
207 views
(0xc0150002) Initializtion Error when disturbuting program with libcurl
I am currently working on a project that requires the use of libCurl in order to obtain data and files from the internet. My application is working perfectly when I try to run it on my desktop(Windows ...
0
votes
0answers
70 views
application works well on emulator but fails on real devices
My application works well on emulator, but fails on real devices.
In my application, I used two external libraries. Is it because the device can not find the two external libraries? I am not sure.
...
0
votes
1answer
65 views
Issues getting libraries to work with Code::Blocks
After giving up on getting freeglut to work, it has begun to annoy me that I don't actually know how to get external libraries working with code::blocks. Could someone please explain the exact steps ...
0
votes
1answer
290 views
Testing Android project with jar dependecies
My Android project has a few jar libraries as dependencies. Alone, it compiles and works well.
I wrote a little test project but running it i don't get any result (no tests passed or failed) nor any ...
0
votes
3answers
343 views
How to use External library jar file in Blackberry
I am Using Eclipse with Blackberry plugin. For my project i am adding external library (twitter_api_me-1.6) jar file. while executing am getting the following error "twitter_api_me-1.6" not found. ...
0
votes
1answer
545 views
Add new codec to ffmpeg (Speex)
I want to use ffmpeg to convert a flv file to mpeg/avi and it seems my flv file has Speex codecs for Audio.
Regarding ffmpeg documents, Speex is a external library so I want to know how can I use ...
0
votes
1answer
141 views
Problems with external libraries (Uncaught exception)
I have been using the Medialytics plugin library to track usage of my app. Only problem is when i use this code to track a button press
mManager.trackEvent(new MMEvent("Buttonclick"));
and insert ...
0
votes
4answers
588 views
java: using external library
I would like to use an external library (e.g. google's guava) for my java program. I use eclipse IDE, so I downloaded guava's jar (and sourced) and followed ...
0
votes
1answer
597 views
Netbeans external library issues
So I am developing an Azureus plugin in NetBeans. I was using Eclipse and everything was hunky-dorry but for GUI related reasons I needed to switch to NetBeans
The main class for my project is in an ...