Testing submodule.
Some checks failed
Build & Release / Linux-AMD64-Build (push) Failing after 4s
Build & Release / Linux-AARCH64-Build (push) Failing after 7s
Build & Release / Windows-AMD64-Build (push) Failing after 9s

This commit is contained in:
Karutoh 2025-03-28 23:53:39 -07:00
parent d81bcbd4ae
commit eac2857db0
3 changed files with 33 additions and 2 deletions

View File

@ -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
View 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

View File

@ -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)