From 2e23b506c766d98966ed213c760b2aa6232ba1fe Mon Sep 17 00:00:00 2001 From: Graham Bloice Date: Fri, 11 Mar 2016 19:51:39 +0000 Subject: Add checkAPI calls to CMake. This generates a top level target, checkAPI, that is excluded from the ALL build target, so must be run separately. On Windows using a Visual Studio generator, call msbuild /p:Configuration=RelWithDebInfo checkAPI.vcxproj Change-Id: I44a57c564dcfc75499463b942436f4b920a82478 Reviewed-on: https://code.wireshark.org/review/14873 Tested-by: Petri Dish Buildbot Reviewed-by: Graham Bloice --- plugins/profinet/CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'plugins/profinet') diff --git a/plugins/profinet/CMakeLists.txt b/plugins/profinet/CMakeLists.txt index 73bdbc4b76..89d7ab7f35 100644 --- a/plugins/profinet/CMakeLists.txt +++ b/plugins/profinet/CMakeLists.txt @@ -72,3 +72,15 @@ install(TARGETS profinet RUNTIME DESTINATION ${CMAKE_INSTALL_LIBDIR}/${CPACK_PACKAGE_NAME}/plugins/${CPACK_PACKAGE_VERSION} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}/${CPACK_PACKAGE_NAME}/plugins/${CPACK_PACKAGE_VERSION} ) + +file(GLOB DISSECTOR_HEADERS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*.h") +CHECKAPI( + NAME + profinet + SWITCHES + -g abort -g termoutput -build + SOURCES + ${DISSECTOR_SRC} + ${DISSECTOR_SUPPORT_SRC} + ${DISSECTOR_HEADERS} +) -- cgit v1.2.3