Skip to content

Commit 9b22eae

Browse files
Fixed install and integration test
1 parent 1705a17 commit 9b22eae

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build-windows.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ jobs:
8282
}
8383
else
8484
{
85-
cmake --install ${{github.workspace}}/_build --config Release --component udpcap_dev --component udpcap_runtime
85+
cmake --install ${{github.workspace}}/_build --config Release --component udpcap_dev
86+
cmake --install ${{github.workspace}}/_build --config Release --component udpcap_runtime
8687
}
8788
8889
- name: Build (Debug)
@@ -98,7 +99,8 @@ jobs:
9899
}
99100
else
100101
{
101-
cmake --install ${{github.workspace}}/_build --config Debug --component udpcap_dev --component udpcap_runtime
102+
cmake --install ${{github.workspace}}/_build --config Debug --component udpcap_dev
103+
cmake --install ${{github.workspace}}/_build --config Debug --component udpcap_runtime
102104
}
103105
104106
- name: Read Project Version from CMakeCache

samples/integration_test/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@ cmake_minimum_required(VERSION 3.13)
2121
project(integration_test)
2222

2323
################################################################################
24-
# Static udpcap -> we need to fetch npcap & pcap++ again
24+
# Static udpcap -> we need to fetch npcap again
2525
#
2626
# When forking this project and compiling against a static udpcap, you will
2727
# probably have to copy the scripts to your own directory structure.
2828
################################################################################
2929

3030
include("${CMAKE_CURRENT_LIST_DIR}/../../thirdparty/npcap/npcap_make_available.cmake")
31-
include("${CMAKE_CURRENT_LIST_DIR}/../../thirdparty/pcapplusplus/pcapplusplus_make_available.cmake")
3231
################################################################################
3332

3433
set(CMAKE_FIND_PACKAGE_PREFER_CONFIG TRUE)

0 commit comments

Comments
 (0)