forked from surge-synthesizer/surge
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Move the old PATHS stuff to sst-plugininfra - Rework the SurgeStorage resoultion. Closes surge-synthesizer#5097 - Temporarily modify the abuot screen retaining and expanding the 1.0 bug in surge-synthesizer#5825
- Loading branch information
Showing
11 changed files
with
57 additions
and
362 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule sst-cpputils
added at
916c8c
Submodule sst-plugininfra
updated
11 files
+18 −2 | CMakeLists.txt | |
+1 −0 | azure-pipelines.yml | |
+1 −12 | include/sst/plugininfra.h | |
+58 −0 | include/sst/plugininfra/paths.h | |
+96 −0 | src/paths_linux.cpp | |
+65 −0 | src/paths_macos.mm | |
+13 −0 | src/paths_subst.cpp.in | |
+78 −0 | src/paths_windows.cpp | |
+7 −1 | tests/CMakeLists.txt | |
+13 −0 | tests/dumppaths.cpp | |
+10 −5 | tests/tests.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,12 @@ | ||
# vi:set sw=2 et: | ||
project(surge-platform) | ||
|
||
add_library(${PROJECT_NAME} | ||
include/platform/Paths.h | ||
src/Paths.cpp | ||
) | ||
if(APPLE) | ||
target_sources(${PROJECT_NAME} PRIVATE | ||
add_library(${PROJECT_NAME} | ||
macos/cpp17-aligned-new.cpp | ||
unix/Paths.cpp | ||
) | ||
elseif(WIN32) | ||
target_sources(${PROJECT_NAME} PRIVATE windows/Paths.cpp) | ||
add_library(${PROJECT_NAME} INTERFACE) | ||
elseif(UNIX) | ||
target_sources(${PROJECT_NAME} PRIVATE unix/Paths.cpp) | ||
target_link_libraries(${PROJECT_NAME} PRIVATE ${CMAKE_DL_LIBS}) | ||
add_library(${PROJECT_NAME} INTERFACE) | ||
endif() | ||
target_link_libraries(${PROJECT_NAME} PUBLIC sst-plugininfra::filesystem) | ||
target_include_directories(${PROJECT_NAME} PUBLIC include) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.