Merge pull request #119 from twasilczyk/master

Don't build libj1939 for Android
pull/129/head
Marc Kleine-Budde 2019-01-14 14:48:48 +01:00 committed by GitHub
commit 2328c6cfa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -63,6 +63,10 @@ set(PROGRAMS
if(NOT ANDROID)
list(APPEND PROGRAMS ${PROGRAMS_J1939})
add_library(j1939 STATIC
libj1939.c
)
endif()
add_library(can STATIC
@ -70,10 +74,6 @@ add_library(can STATIC
canframelen.c
)
add_library(j1939 STATIC
libj1939.c
)
foreach(name ${PROGRAMS})
add_executable(${name} ${name}.c)