External libraries are groups of executable C or C++ functions that can be dynamically accessed by applications.

learn more… | top users | synonyms

2
votes
4answers
469 views

Android Studio and using external library projects

I'm trying to include an external library project (SlidingMenulibrabry or ABS library) in the new Android Studio that Google released yesterday but I'm constantly getting errors with the Gradle like ...
0
votes
1answer
14 views

KDevelop4 linking to external library

I'm trying to setup KDevelop with Gcc, but I cant get it to properly link to external libraries. I get the following error: /home/tahsin/Projects/glWrap/build> make Linking CXX executable glwrap ...
0
votes
1answer
28 views

Wrap up a software package ubuntu?

I have a program that I've written in Python that requires several external libraries. What I want to do is wrap python2.7 itself, and all of the external libraries up into one nice software package ...
1
vote
1answer
18 views

deploy program including external libraries

I have this application that uses external libraries (downloaded them from the Internet and are just situated locally on my machine). But I need to deploy the program and give it to customer whereas ...
0
votes
0answers
22 views

Can't import external Preference library in android

I want to add this preference library to my android project https://github.com/attenzione/android-ColorPickerPreference <net.margaritov.preference.colorpicker.ColorPickerPreference //can't show ...
-2
votes
0answers
26 views

When using facebook android sdk v3.0.1 as library getting an error [duplicate]

When I add facebook android SDk as library in project I am getting this error message in console of eclipse. I don't understand what this means. [2013-04-27 13:05:31 - FacebookLogin] Found 2 ...
0
votes
1answer
83 views

Requests Library - Error Handling - HTTP Requests - Python

I'm having a slight problem with the requests library. Say for example I have a statement like this in Python: try: request = requests.get('google.com/admin') #Should return 404 except ...
0
votes
1answer
70 views

How to add Externall Libraries on QT Project C++

I've been struggling on searching for descent documentations on how to add two external libraries to my QT Project. Here are the paths of my external libraries. E:\QT ...
0
votes
1answer
128 views

Use function from external library

I'm pretty new to c++ and lower-than-java-level programming, so excuse me if my question is noobish. The situation is as follows: I'm starting an OpenGL Application via glc-capture. glc is a ...
0
votes
1answer
151 views

ROS Groovy with cvBlob, linking and Cmake

I'm trying to use ROS Groovy, under ubuntu 12.04. I want to use cvBlob lib with opencv in ROS. I installed both, my test program works in opencv. I think there shouldn't be any problem with the ...
0
votes
2answers
392 views

g++ compile error: undefined reference to a shared library function which exists

I recently installed the hdf5 library on an ubuntu machine, and am now having trouble linking to the exported functions. I wrote a simple test script readHDF.cpp to explain the issue: #include ...
0
votes
0answers
33 views

Use external ui in android project

I create an android project and in this project create a menu. then create a activity and test this menu. All thing is OK. Then set this project as library. And create new android project. In the new ...
0
votes
0answers
83 views

jsoup external library causes me several unexplained issues

when i make a new android app in my eclipse and run it it works fine. i want to add the Jsoup library so i put the jar files in the libs folder (which already exsist and contains a ...
1
vote
1answer
309 views

adding external C libraries to xcode for IOS

I would like to add libcurl to Xcode so that I can compile #include <curl/curl.h>, everything that I can find on google is outdated. I am using XCode 4.5.2 with IOS 6.0. I have tried to add it ...
0
votes
1answer
89 views

Cannot launch Android project after adding external library

I have an Android project to which I have added an external library, namely droidtext. After this, I don't seem able to run my application (on a device, as the emulator is too slow) anymore. This ...
0
votes
5answers
470 views

Eclipse How To Import External Library's Documentation

When we import the external library to eclipse java project, we can use eclipse's auto correction for the imported methods from new libraries.But we can't see what the methods do specifically.We have ...
1
vote
0answers
140 views

PCL 1.5.1 All-In-One Installer

Some days ago I installed PCL 1.5.1 All-In-One Installer for MSVC 2008. Trying to check it out, I pasted some example code from the official tutorial, configured my VC++ by setting include and library ...
2
votes
2answers
631 views

Qt and Linking to an external DLL

I've developed a program and I am trying to make this program work with a controllable light source manufactured by some other company. I've emailed the company and they have agreed to send me their ...
1
vote
1answer
95 views

What to learn before exploring C++ libraries

I am new to C++ and I've been trying to learn about different libraries to play around with such as glew and boost, but at every turn I run into a ridiculous amount of problems with compiling binaries ...
0
votes
0answers
185 views

What is the difference between using #pragma lib and “Additional Dependencies”?

I am using an external library and everything is working as expected when I point the .lib through Properties > Linker > Input > Additional Dependencies. However, if I use #pragma comment(lib, ...
3
votes
3answers
1k views

add a library to silex

I know this question has already been asked, but it seems that autoloading process changed a little bit with composer. I just want to add a class library to my silex project. So I made this file: ...
0
votes
1answer
639 views

Ruby on Rails - Can't find file

This is a nooby question whose answer will probably cause me to smack my forehead with a "duh" but for now, I'm stumped. I'm trying to install the "Best In Place" gem and following the directions ...
1
vote
1answer
117 views

What's the best way to include external libraries in a static library project

I'm building a static library with XCode 4. For example I want to include reachability in the project. Do I have to add both the m and h files in it and tell the user who will use my library to add ...
3
votes
1answer
203 views

Is $GLOBALS variable disabled on CodeIgniter framework?

I'm trying to add Evernote SDK on my CodeIgniter installation, but not all classes are loaded, it's pretty weird :S. I notice that Evernote SDK do an extensive use of $GLOBALS, and I think that my ...
3
votes
1answer
143 views

Make an #include <header.h> only visible for its own library

Is it possible to hide an #include <header.h> //from library B from projects using the library A? I need to keep the include there because otherwise my library A won't compile, but as that ...
1
vote
2answers
299 views

How to use Libraries

For some reason I'm never able to use external libraries in any language. I'm looking for instructions/explanations of how to use external libraries, as well as how they work. When I search online, I ...
2
votes
1answer
2k views

C++ string and Arduino String. How to combine them?

I have been writing a library for my project (for now I am using Arduino). The problem that I have is that string in C++ and in Arduino differ. i.e. I would like my library to be independent of ...
0
votes
2answers
344 views

Creating your own API to be included in the iOS SDK

I would like to know if it is possible to create your own API and include it into the iOS SDK.
0
votes
1answer
764 views

How to compile and run java source files with external .jar library?

Situation: file1.java file2.java library.jar file2.java imports something from library .jar file1.java is the file with main method I tryed to put these 3 files in one folder and: javac ...
0
votes
0answers
222 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
277 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?
4
votes
3answers
117 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 ...
2
votes
2answers
368 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 ...
3
votes
1answer
528 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 ...
5
votes
1answer
3k 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 ...
2
votes
1answer
736 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 ...
0
votes
1answer
880 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
150 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
272 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 ...
6
votes
3answers
4k 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
1k 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. ...
9
votes
4answers
419 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 ...
0
votes
1answer
1k 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 ...
6
votes
2answers
9k 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 ...
0
votes
1answer
202 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 ...
1
vote
3answers
348 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 ...
0
votes
4answers
2k 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 ...
9
votes
3answers
1k 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 ...
1
vote
1answer
1k 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 ...
2
votes
2answers
2k 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 2