Test case showing problems on loading library (64 vs 32 bit)

This commit is contained in:
riven-lwjgl 2011-07-12 17:49:58 +00:00
parent 4a6717959c
commit 950b17a8fe
4 changed files with 24 additions and 4 deletions

View file

@ -0,0 +1,18 @@
/*
* Created on Jul 12, 2011
*/
package org.lwjgl.test.mapped;
import java.io.File;
import org.lwjgl.opengl.Display;
public class MappedObjectWithLibrary
{
public static void testLWJGL() throws Exception
{
System.out.println(new File(System.getProperty("java.library.path")).getCanonicalPath());
Display.create();
}
}