OXIESEC PANEL
- Current Dir:
/
/
lib64
/
wireshark
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/02/2025 09:20:48 AM
r-xr-xr-x
📄
FindGLIB2.cmake
2.85 KB
07/18/2018 07:39:21 PM
rw-r--r--
📄
FindWSWinLibs.cmake
1.04 KB
07/18/2018 07:39:21 PM
rw-r--r--
📄
FindWireshark.cmake
888 bytes
07/18/2018 07:39:21 PM
rw-r--r--
📄
LocatePythonModule.cmake
1.92 KB
07/18/2018 07:39:21 PM
rw-r--r--
📄
UseAsn2Wrs.cmake
2.72 KB
07/18/2018 07:39:21 PM
rw-r--r--
📄
UseMakePluginReg.cmake
452 bytes
07/18/2018 07:39:21 PM
rw-r--r--
📄
WiresharkConfig.cmake
578 bytes
10/15/2023 03:45:55 AM
rw-r--r--
📄
WiresharkConfigVersion.cmake
300 bytes
10/15/2023 03:45:55 AM
rw-r--r--
📁
extcap
-
02/16/2024 08:51:19 PM
rwxr-xr-x
📁
plugins
-
10/15/2023 03:47:26 AM
rwxr-xr-x
Editing: FindWSWinLibs.cmake
Close
# # - Find WSWin Libs # Due to the layout of the Wireshark Win support libs, # CMake needs some support to find them # # The function is passed the directory name to search for and the variable # to set in the callers scope. function( FindWSWinLibs _WS_LIB_SEARCH_PATH _LIB_HINT_VAR ) if( WIN32 ) if( ARGN ) set( _PROJECT_LIB_DIR ${ARGN} ) else() if( DEFINED ENV{WIRESHARK_LIB_DIR} ) # The buildbots set WIRESHARK_LIB_DIR but not WIRESHARK_BASE_DIR. file( TO_CMAKE_PATH "$ENV{WIRESHARK_LIB_DIR}" _PROJECT_LIB_DIR ) else() file( TO_CMAKE_PATH "$ENV{WIRESHARK_BASE_DIR}" _WS_BASE_DIR ) set( _PROJECT_LIB_DIR "${_WS_BASE_DIR}/wireshark-${WIRESHARK_TARGET_PLATFORM}-libs-2.6" ) endif() endif() file( GLOB _SUBDIR "${_PROJECT_LIB_DIR}/*" ) foreach( _DIR ${_SUBDIR} ) if( IS_DIRECTORY ${_DIR} ) if( "${_DIR}" MATCHES ".*/${_WS_LIB_SEARCH_PATH}" ) set( ${_LIB_HINT_VAR} ${_DIR} PARENT_SCOPE ) endif() endif() endforeach() endif() endfunction()