mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-23 01:08:20 +01:00
fix build
This commit is contained in:
parent
d3f9ab7dec
commit
51e435d46c
@ -10,7 +10,7 @@ TEST(MSGPACKC, simple_buffer)
|
||||
msgpack_packer pk;
|
||||
msgpack_packer_init(&pk, &sbuf, msgpack_sbuffer_write);
|
||||
|
||||
msgpack_pack_int(pk, 1);
|
||||
msgpack_pack_int(&pk, 1);
|
||||
|
||||
msgpack_zone z;
|
||||
msgpack_zone_init(&z, 2048);
|
||||
|
@ -35,8 +35,8 @@ libmsgpack_la_LDFLAGS = -version-info 1:0:0
|
||||
check_PROGRAMS = \
|
||||
msgpack_test
|
||||
|
||||
msgpackc_test_SOURCES = test.cpp
|
||||
msgpackc_test_CXXFLAGS = -I$(top_srcdir) -I$(top_srcdir)/c -I$(top_srcdir)/cpp
|
||||
msgpackc_test_LDFLAGS = libmsgpack.la -lgtest_main
|
||||
msgpack_test_SOURCES = test.cpp
|
||||
msgpack_test_CXXFLAGS = -I$(top_srcdir) -I$(top_srcdir)/c -I$(top_srcdir)/cpp
|
||||
msgpack_test_LDFLAGS = libmsgpack.la -lgtest_main
|
||||
|
||||
TESTS = $(check_PROGRAMS)
|
||||
|
Loading…
x
Reference in New Issue
Block a user