Skip to content

Commit 4e919ef

Browse files
Valentin Vidicvvidic
Valentin Vidic
authored andcommitted
API - drop unused dependency: crossguid
Seems like the library was linked but never called since commit 8793eab: Daemon - evolve kill token into a more general comms token
1 parent 74c53a7 commit 4e919ef

File tree

5 files changed

+4
-12
lines changed

5 files changed

+4
-12
lines changed

app/api/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,22 +87,18 @@ endif()
8787

8888
# Windows
8989
if ("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows")
90-
find_package(crossguid CONFIG REQUIRED)
9190
target_link_libraries(${PROJECT_NAME}
9291
PRIVATE
93-
crossguid
9492
)
9593
endif()
9694

9795
# Linux
9896
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
99-
find_package(crossguid CONFIG REQUIRED)
10097
target_link_libraries(${PROJECT_NAME}
10198
PUBLIC
10299
stdc++fs
103100
rt
104101
PRIVATE
105-
crossguid
106102
)
107103
endif()
108104

app/api/src/sonicpi_api.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@
2727
#include <api/scope_exit.h>
2828
#include <api/sonicpi_api.h>
2929

30-
#ifndef __APPLE__
31-
#include <crossguid/guid.hpp>
32-
#endif
33-
3430
using namespace std::chrono;
3531
using namespace oscpkt;
3632

app/linux-pre-vcpkg.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ fi
5151
cd vcpkg
5252

5353
if [ "$no_imgui" == true ]; then
54-
./vcpkg install libsndfile[core,external-libs] kissfft crossguid platform-folders reproc catch2 --recurse
54+
./vcpkg install libsndfile[core,external-libs] kissfft platform-folders reproc catch2 --recurse
5555
else
56-
./vcpkg install libsndfile[core,external-libs] kissfft fmt crossguid sdl2[x11] gl3w reproc gsl-lite concurrentqueue platform-folders catch2 --recurse
56+
./vcpkg install libsndfile[core,external-libs] kissfft fmt sdl2[x11] gl3w reproc gsl-lite concurrentqueue platform-folders catch2 --recurse
5757
fi
5858

5959

app/mac-pre-vcpkg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ fi
6363

6464

6565
if [ "$no_imgui" == true ]; then
66-
./vcpkg install libsndfile[core,external-libs] kissfft crossguid platform-folders reproc catch2 --triplet ${triplet[0]} --recurse
66+
./vcpkg install libsndfile[core,external-libs] kissfft platform-folders reproc catch2 --triplet ${triplet[0]} --recurse
6767
else
6868
./vcpkg install libsndfile[core,external-libs] kissfft fmt sdl2 gl3w reproc gsl-lite concurrentqueue platform-folders catch2 --triplet ${triplet[0]} --recurse
6969
fi

app/win-pre-vcpkg.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ if not exist "vcpkg\vcpkg.exe" (
1919

2020
cd vcpkg
2121
@echo Installing Libraries
22-
vcpkg install libsndfile[core,external-libs] kissfft fmt crossguid sdl2 gl3w reproc gsl-lite concurrentqueue platform-folders catch2 --triplet x64-windows-static-md --recurse
22+
vcpkg install libsndfile[core,external-libs] kissfft fmt sdl2 gl3w reproc gsl-lite concurrentqueue platform-folders catch2 --triplet x64-windows-static-md --recurse
2323

2424
cd %WORKING_DIR%

0 commit comments

Comments
 (0)