You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Updated the song platforms to support requesting playlists.
* Added a DCA_INLINE macro.
* Modified the usage of certain Jsonifier classes to hold up to the updates.
Copy file name to clipboardexpand all lines: CMakeLists.txt
+24-8
Original file line number
Diff line number
Diff line change
@@ -21,22 +21,38 @@
21
21
# CMakeLists.txt - The CMake script for building this library.
22
22
# May 13, 2021
23
23
# https://discordcoreapi.com
24
-
set(Opus_DIR "C:/Vcpkg/installed/x64-windows/share/opus") # Set this one to the folder location of the file "OpusConfig.cmake".
25
-
set(unofficial-sodium_DIR "C:/Vcpkg/installed/x64-windows/share/unofficial-sodium") # Set this one to the folder location of the file "unofficial-sodiumConfig.cmake".
26
-
set(Jsonifier_DIR "C:/vcpkg2/Users/Chris/source/repos/Jsonifier/Install/Windows-Release/share/jsonifier") # Set this one to the folder location of the file "JsonifierConfig.cmake".
27
-
set(OPENSSL_ROOT_DIR "C:/Vcpkg/installed/x64-windows/") # Set this one to the folder location of the include folder and library folders of OpenSSL.
24
+
set(Opus_DIR "C:/Vcpkg/installed/x64-windows-static/share/opus") # Set this one to the folder location of the file "OpusConfig.cmake".
25
+
set(unofficial-sodium_DIR "C:/Vcpkg/installed/x64-windows-static/share/unofficial-sodium") # Set this one to the folder location of the file "unofficial-sodiumConfig.cmake".
26
+
set(Jsonifier_DIR "") # Set this one to the folder location of the file "JsonifierConfig.cmake".
27
+
set(OPENSSL_ROOT_DIR "C:/Vcpkg/installed/x64-windows-static/") # Set this one to the folder location of the include folder and library folders of OpenSSL.
28
+
set(VCPKG_ROOT_DIR "C:/Vcpkg")
29
+
set(CMAKE_BUILD_TYPES "Release;Debug")
30
+
option(BUILD_SHARED_LIBS"Build using shared libraries"ON)
0 commit comments