added unit test console app to devel package for Building Block. 32/138132/1 tizen_4.0_tv accepted/tizen/4.0/unified/20170816.012846 accepted/tizen/4.0/unified/20170816.015553 accepted/tizen/4.0/unified/20170828.224004 accepted/tizen/unified/20170711.181311 submit/tizen/20170711.071902 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170814.115522 submit/tizen_4.0/20170828.100002 submit/tizen_4.0_unified/20170814.115522 tizen_4.0.IoT.p1_release tizen_4.0.IoT.p2_release tizen_4.0.m2_release
authorHyihong Chae <hh.chae@samsung.com>
Tue, 11 Jul 2017 07:14:13 +0000 (16:14 +0900)
committerHyihong Chae <hh.chae@samsung.com>
Tue, 11 Jul 2017 07:14:13 +0000 (16:14 +0900)
Change-Id: Id9f668f7462275ab9afc6985f6272bca3ecc38dc
Signed-off-by: HyiHong Chae <hh.chae@samsung.com>
packaging/capi-network-nfc.spec
test/CMakeLists.txt

index a844c40..913ba24 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-network-nfc
 Summary:    A NFC library in Native API
-Version:    0.3.11
+Version:    0.3.12
 Release:    0
 Group:      Network & Connectivity/NFC
 License:    Apache-2.0
@@ -64,3 +64,4 @@ rm -rf %{buildroot}
 %{_includedir}/network/*.h
 %{_libdir}/pkgconfig/*.pc
 %{_libdir}/libcapi-network-nfc.so
+%{_bindir}/nfc_unit_test
\ No newline at end of file
index 5c3e5cc..642481a 100755 (executable)
@@ -1,3 +1,5 @@
+PROJECT(nfc_unit_test C)
+
 SET(fw_test "nfc-test")
 
 INCLUDE(FindPkgConfig)
@@ -16,3 +18,5 @@ FOREACH(src ${sources})
     ADD_EXECUTABLE(${src_name} ${src})
     TARGET_LINK_LIBRARIES(${src_name} ${fw_name} ${${fw_test}_LDFLAGS})
 ENDFOREACH()
+
+INSTALL(TARGETS nfc_unit_test RUNTIME DESTINATION bin/)