From 3f8cf55f143828a4ada0b2446ea6fcdcf595ed60 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Tue, 26 Mar 2013 06:40:17 -0400 Subject: Fixed compilation with autotools. --- test/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/Makefile.am b/test/Makefile.am index 00229f7..43ad6b4 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,6 +1,7 @@ bin_PROGRAMS = test -test_LDADD = ../libusbhp/libusbhp.la +test_LDADD = $(UDEV_LIBS) ../libusbhp/libusbhp.la +test_CXXFLAGS = -I../libusbhp $(UDEV_CFLAGS) test_SOURCES = \ test.cc -- cgit v1.2.3 From e67e496e7a2a4f757dac328f04a05b53c0653da5 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Tue, 26 Mar 2013 07:51:17 -0400 Subject: Rename test file to avoid name collision. --- test/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/Makefile.am b/test/Makefile.am index 43ad6b4..4642f7d 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,8 +1,8 @@ -bin_PROGRAMS = test +bin_PROGRAMS = hptest -test_LDADD = $(UDEV_LIBS) ../libusbhp/libusbhp.la -test_CXXFLAGS = -I../libusbhp $(UDEV_CFLAGS) -test_SOURCES = \ +hptest_LDADD = $(UDEV_LIBS) ../libusbhp/libusbhp.la +hptest_CXXFLAGS = -I../libusbhp $(UDEV_CFLAGS) +hptest_SOURCES = \ test.cc include_HEADERS = -- cgit v1.2.3 From 0035e5cc347a07827808ee99a1ecbd4640a4b37c Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Tue, 26 Mar 2013 13:16:45 +0100 Subject: Fix release build in visual studio. --- test/test.vcxproj | 1 + 1 file changed, 1 insertion(+) (limited to 'test') diff --git a/test/test.vcxproj b/test/test.vcxproj index be61eef..db858cd 100644 --- a/test/test.vcxproj +++ b/test/test.vcxproj @@ -52,6 +52,7 @@ false + ../libusbhp;$(IncludePath) -- cgit v1.2.3 From b8c9e442a9313f27670dcae97757b3c416ac263d Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Tue, 26 Mar 2013 08:21:05 -0400 Subject: Added visual studio project files to dist. --- test/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test') diff --git a/test/Makefile.am b/test/Makefile.am index 4642f7d..5725160 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -6,3 +6,5 @@ hptest_SOURCES = \ test.cc include_HEADERS = + +EXTRA_DIST = test.vcxproj -- cgit v1.2.3