Questions tagged [libs]

It's a special folder in Java projects. It's used to store compiled libraries (jar files)

It's a special folder in Java projects.
It's used to store compiled libraries (jar files).
These libraries contain common blocks of code that may be reused inside an app.

189 questions
0
votes
1 answer

How to use wx-config information in makefile for setting compiler/linker variables?

I have an application base on wxwidgets, using the boost and pcre lib. Inside the makefile I have normally to put compiler and linker paths by using the CXXFLAGS variable etc. I wrote this: CXXFLAGS := -I. -I/path/boost/prod -I/path/pcre/include…
fotinsky
  • 972
  • 2
  • 10
  • 25
0
votes
1 answer

Does Boost BCP also copy the required LIB files?

This may be a no-brainer for longtime boost users, but I’m just getting into boost. I built the full boost distribution and BCP to extract just the parts I need to put in my VisualStudio C++ project. What I found is when I call bcp, it copies the…
Minok
  • 522
  • 4
  • 9
0
votes
1 answer

NoClassDefFound Exception, when using imported jar from libs

I am trying referencing a libs folder in my project. 1.) I created a simple jar with one single dummy class ImportableDummy.java and exported the project as a jar. Jar Project: 2.) Then I put the jar into the libs folder inside my Project. The lib…
Skip
  • 6,240
  • 11
  • 67
  • 117
0
votes
2 answers

How can I get application libraries (jarNames) on java web servers like Tomcat and WAS?

I need to get jarNames of the libraries used from my web application on Tomcat and Websphere servers. I have this code: public void libs(ActionEvent e){ System.getProperty("java.class.path"); try { Field ucp =…
andersonbalves
  • 309
  • 1
  • 2
  • 12
0
votes
1 answer

Python crypt/decrypt strings

Is there a lib for this kind of crypt/decrypt in python? I am trying to generate encrypted ascii text which changes on each generation. If no lib for this, would you please advice a working alternative. Already tried to convert this PHP code to…
Meg Lepett
  • 71
  • 1
  • 1
  • 6
0
votes
0 answers

ClassNotFoundException: javax.persistence.Persistence - Hibernate

I'm getting this error: java.lang.ClassNotFoundException: javax.persistence.Persistence This is my project: persistence.xml
Lucas Beier
  • 621
  • 1
  • 7
  • 19
0
votes
2 answers

Libs folder vs build path dependency (ANDROID)

I have some jar libraries on which my app depends. When I copy and paste the jars in the project/libs folder, it builds, compiles and executes correctly. However, if I right click my project -> Build path -> Configure build path -> Libraries tab ->…
Twinone
  • 2,949
  • 4
  • 28
  • 39
0
votes
1 answer

Can XSS vulnerabilities present in 3rd party js libraries be used to attack the app that uses the lib?

I am using various 3rd party libs like cordova.js, jquery, jquery mobile, mobilizer and so on, in a an android mobile app.. These libs are found to have various XSS vectors through insecure use of eval, settimeout, inner/outerhtml and so on.…
Ocelot
  • 1,733
  • 4
  • 29
  • 53
0
votes
1 answer

c++ including libs and adding directories for directX11

So I'm playing around with a DirectX tutorial trying to learn it but i keep getting these errors: 1>main.obj : error LNK2019: unresolved external symbol _D3D11CreateDeviceAndSwapChain@48 referenced in function "void __cdecl InitD3D(struct…
0
votes
1 answer

Monodevelop libs/ folder

I have a .jar file from github and have been asked to place it in my Android app’s libs/ folder. I am using MonoDevelop for Android, and I cannot see a libs/ folder anywhere. I see that in Eclipse, under options, a path can be added for .jar files.…
user2002197
  • 101
  • 1
  • 3
  • 7
0
votes
3 answers

win32:libs undefined reference

I want to link a .lib in my Qt project and I get an error about an undefined reference to vhtIOConn::getDefault(vhtIOConn::DeviceType). I have already added the following specifications to the .pro…
hector
0
votes
1 answer

How do I make tomcat include libs from the current project?

I've read somewhere as a good practice, that it's better to have the required libs included in each project, then just add all the libs you'll ever need to the tomcat folder. Well right now Tomcat seems to need all the required libs to be in lib…
Arturas M
  • 4,120
  • 18
  • 50
  • 80
0
votes
1 answer

Linking MinGW64 libs with MSVC 2010

I am trying to link my self compiled libraries (zlib, SDL, SDL_Mixer, SDL_Image, PCRE, ...) (.dll.a, not static) which I've compiled with MinGW 4.7.2 now with MSVC 2010 (x64), this works fine, but when I try to start the application, I am getting…
Thomas
  • 3,074
  • 1
  • 25
  • 39
0
votes
1 answer

Linking libs with make/g++ under ubuntu

lets say my makefile looks like this: CXX = g++ OGLLIBS = -lglut32 -lglu32 -lopengl32 projname : projname.o ${CXX} -o projname $< ${OGLLIBS} Then in which directory does g++ look for the libraries? I was assuming . but if I put the libs there…
user1709708
  • 1,557
  • 2
  • 14
  • 27
0
votes
2 answers

Installing the libs3 on linux

Could someone pls give me a detailed procedure to intsall libs3 on LINUX? Just the procedure will do. Thanks in advance.
Raghu Ram
  • 1
  • 1
1 2 3
12
13