build: temporary revert to autotools (#174)
As long as cmake doesn't generate suitable deb packages, we need to switch back :(
This commit is contained in:
@ -1,5 +0,0 @@
|
||||
add_executable(mbus_parse ${CMAKE_CURRENT_LIST_DIR}/mbus_parse.c)
|
||||
target_link_libraries(mbus_parse PRIVATE libmbus::libmbus)
|
||||
|
||||
add_executable(mbus_parse_hex ${CMAKE_CURRENT_LIST_DIR}/mbus_parse_hex.c)
|
||||
target_link_libraries(mbus_parse_hex PRIVATE libmbus::libmbus)
|
25
test/Makefile.am
Normal file
25
test/Makefile.am
Normal file
@ -0,0 +1,25 @@
|
||||
# ------------------------------------------------------------------------------
|
||||
# Copyright (C) 2010, Raditex AB
|
||||
# All rights reserved.
|
||||
#
|
||||
# rSCADA
|
||||
# http://www.rSCADA.se
|
||||
# info@rscada.se
|
||||
#
|
||||
# ------------------------------------------------------------------------------
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
|
||||
AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_srcdir)/mbus
|
||||
|
||||
noinst_HEADERS =
|
||||
noinst_PROGRAMS = mbus_parse mbus_parse_hex
|
||||
|
||||
mbus_parse_LDFLAGS = -L$(top_builddir)/mbus
|
||||
mbus_parse_LDADD = -lmbus -lm
|
||||
mbus_parse_SOURCES = mbus_parse.c
|
||||
|
||||
mbus_parse_hex_LDFLAGS = -L$(top_builddir)/mbus
|
||||
mbus_parse_hex_LDADD = -lmbus -lm
|
||||
mbus_parse_hex_SOURCES = mbus_parse_hex.c
|
||||
|
Reference in New Issue
Block a user