java_blacklist: Enable Java blacklisted modules

Enable building java wrappers for a few that were previously
blacklisted.

Signed-off-by: Noel Eck <noel.eck@intel.com>
This commit is contained in:
Noel Eck 2018-01-17 13:36:19 -08:00
parent 23a57b8c90
commit 36ebd15abc
6 changed files with 31 additions and 5 deletions

View File

@ -119,7 +119,7 @@ endfunction (_gen_pkg_config_per_target)
# writes a pom file to each build directory
function (_gen_pom_per_target)
# Remove targets listed in the JAVA blacklist from pom file generation
list(REMOVE_ITEM ARGN ${JAVASWIG_BLACKLIST})
list(REMOVE_ITEM ARGN JAVASWIG_BLACKLIST)
list(LENGTH ARGN n_targets)
message(STATUS "Generating pom files for ${n_targets} CXX libraries...")

View File

@ -1,4 +0,0 @@
nrf8001
kxcjk1013
l3gd20
mmc35240

View File

@ -0,0 +1,7 @@
%module javaupm_kxcjk1013
%{
#include "kxcjk1013.hpp"
%}
%include "kxcjk1013.hpp"

View File

@ -0,0 +1,7 @@
%module javaupm_l3gd20
%{
#include "l3gd20.hpp"
%}
%include "l3gd20.hpp"

View File

@ -0,0 +1,8 @@
%module javaupm_mmc35240
%include "../upm.i"
%{
#include "mmc35240.hpp"
%}
%include "mmc35240.hpp"

View File

@ -0,0 +1,8 @@
%module javaupm_nrf8001
%include "../upm.i"
%{
#include "nrf8001.hpp"
%}
%include "nrf8001.hpp"