summaryrefslogtreecommitdiffstats
path: root/CMakeScripts/IncludeJava.cmake
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-04-10 12:36:35 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-04-10 12:36:35 +0000
commit20bb4e18c328ed82a0f3d61c2d4edc2002263792 (patch)
tree507302f6c95430fe4317a676250747b0c1f8b350 /CMakeScripts/IncludeJava.cmake
parentadjust the file generation path fir sp-marshal to jive with the include vs ad... (diff)
downloadinkscape-20bb4e18c328ed82a0f3d61c2d4edc2002263792.tar.gz
inkscape-20bb4e18c328ed82a0f3d61c2d4edc2002263792.zip
cmake: include javainc dir. please check if this works on linux and solaris too
(bzr r5399)
Diffstat (limited to '')
-rw-r--r--CMakeScripts/IncludeJava.cmake14
1 files changed, 14 insertions, 0 deletions
diff --git a/CMakeScripts/IncludeJava.cmake b/CMakeScripts/IncludeJava.cmake
new file mode 100644
index 000000000..bd8bdb58e
--- /dev/null
+++ b/CMakeScripts/IncludeJava.cmake
@@ -0,0 +1,14 @@
+# - include the src/javainc dir in the include path and the correct config path too
+
+
+INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/src/bind/javainc )
+
+IF (WIN32)
+ INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/src/bind/javainc/win32 )
+ENDIF (WIN32)
+IF (UNIX)
+ INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/src/bind/javainc/linux )
+ENDIF (UNIX)
+IF (SOLARIS)
+ INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/src/bind/javainc/solaris )
+ENDIF (SOLARIS)