Testing submodule.
This commit is contained in:
parent
d81bcbd4ae
commit
eac2857db0
@ -15,6 +15,7 @@ jobs:
|
||||
- name: Building/Compiling/Installing Project
|
||||
run: |
|
||||
cd ${{ gitea.workspace }}
|
||||
git pull --recurse-submodules
|
||||
cmake -A x64 -DCMAKE_BUILD_TYPE=Release --preset=default .
|
||||
cd build
|
||||
cmake --build . --config Release
|
||||
@ -55,6 +56,7 @@ jobs:
|
||||
- name: Building/Compiling/Installing Project
|
||||
run: |
|
||||
cd ${{ gitea.workspace }}
|
||||
git pull --recurse-submodules
|
||||
cmake -DCMAKE_BUILD_TYPE=Release .
|
||||
cmake --build . --config Release
|
||||
|
||||
@ -85,6 +87,7 @@ jobs:
|
||||
- name: Building/Compiling/Installing Project
|
||||
run: |
|
||||
cd ${{ gitea.workspace }}
|
||||
git pull --recurse-submodules
|
||||
cmake -DCMAKE_BUILD_TYPE=Release .
|
||||
cmake --build . --config Release
|
||||
|
||||
|
14
.gitignore
vendored
Normal file
14
.gitignore
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
*.obj
|
||||
*.cpp.obj
|
||||
*.lib
|
||||
*.exe
|
||||
*.a
|
||||
*.ninja_deps
|
||||
*.ninja_log
|
||||
*.ninja
|
||||
*.cmake
|
||||
*.log
|
||||
/.idea/
|
||||
/cmake-build-release/
|
||||
/cmake-build-debug/
|
||||
/external
|
@ -1,4 +1,4 @@
|
||||
cmake_minimum_required(VERSION 3.18.4)
|
||||
cmake_minimum_required(VERSION 3.25.1)
|
||||
project(DeviceScanner C CXX)
|
||||
|
||||
if (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Windows")
|
||||
@ -36,6 +36,8 @@ elseif (IS_OS_LINUX)
|
||||
add_compile_definitions(VK_USE_PLATFORM_WAYLAND_KHR EHS_WS_WAYLAND)
|
||||
endif()
|
||||
|
||||
target_include_directories(DeviceScanner PRIVATE "external/ehs/include")
|
||||
|
||||
find_package(ZLIB REQUIRED)
|
||||
if (ZLIB_FOUND)
|
||||
message(STATUS "ZLIB was found.")
|
||||
@ -50,4 +52,16 @@ else ()
|
||||
message(STATUS "OpenSSL was not found.")
|
||||
endif ()
|
||||
|
||||
target_link_libraries(DeviceScanner PRIVATE OpenSSL::SSL OpenSSL::Crypto ZLIB::ZLIB EHS_Stc wayland-client)
|
||||
if (IS_OS_WINDOWS)
|
||||
target_link_libraries(DeviceScanner PRIVATE avrt ws2_32 IPHLPAPI)
|
||||
elseif (IS_OS_LINUX)
|
||||
if (LINUX_WINDOW_SYSTEM STREQUAL "Wayland")
|
||||
target_link_libraries(DeviceScanner PRIVATE wayland-client)
|
||||
elseif (LINUX_WINDOW_SYSTEM STREQUAL "XCB")
|
||||
target_link_libraries(DeviceScanner PRIVATE xcb xcb-cursor xcb-xfixes xcb-xinput)
|
||||
endif ()
|
||||
|
||||
target_link_libraries(DeviceScanner PRIVATE z asound pipewire-0.3)
|
||||
endif ()
|
||||
|
||||
target_link_libraries(DeviceScanner PRIVATE OpenSSL::SSL OpenSSL::Crypto ZLIB::ZLIB EHS_Stc)
|
Loading…
x
Reference in New Issue
Block a user