summaryrefslogtreecommitdiff
path: root/randpkt_core
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2016-03-11 19:51:39 +0000
committerGraham Bloice <graham.bloice@trihedral.com>2016-05-02 12:01:24 +0000
commit2e23b506c766d98966ed213c760b2aa6232ba1fe (patch)
treee15eec1049e10419d869dea459730791ec2bc128 /randpkt_core
parent231f6b5035e4f001eca22029b58cf4c498d624bd (diff)
downloadwireshark-2e23b506c766d98966ed213c760b2aa6232ba1fe.tar.gz
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 <buildbot-no-reply@wireshark.org> Reviewed-by: Graham Bloice <graham.bloice@trihedral.com>
Diffstat (limited to 'randpkt_core')
-rw-r--r--randpkt_core/CMakeLists.txt21
1 files changed, 20 insertions, 1 deletions
diff --git a/randpkt_core/CMakeLists.txt b/randpkt_core/CMakeLists.txt
index f40f745408..15e1822f57 100644
--- a/randpkt_core/CMakeLists.txt
+++ b/randpkt_core/CMakeLists.txt
@@ -36,7 +36,7 @@ if (WERROR_COMMON_FLAGS)
)
endif()
-file(GLOB RANDPKT_CORE_HEADERS randpkt_core.h)
+file(GLOB RANDPKT_CORE_HEADERS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" randpkt_core.h)
add_library(randpkt_core STATIC
${RANDPKT_CORE_SRC}
@@ -45,3 +45,22 @@ add_library(randpkt_core STATIC
set_target_properties(randpkt_core PROPERTIES
LINK_FLAGS "${WS_LINK_FLAGS}"
FOLDER "Libs")
+
+CHECKAPI(
+ NAME
+ randpkt_core-base
+ SWITCHES
+ -g deprecated-gtk
+ SOURCES
+ ${RANDPKT_CORE_SRC}
+ ${RANDPKT_CORE_HEADERS}
+)
+CHECKAPI(
+ NAME
+ randpkt_core-todo
+ SWITCHES
+ -M -g deprecated-gtk-todo
+ SOURCES
+ ${RANDPKT_CORE_SRC}
+ ${RANDPKT_CORE_HEADERS}
+)