File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,9 @@ set (PLUGINVAL_SAMPLERATES "44100;44800;96000" CACHE STRING "list of samplerates
35
35
36
36
set (PLUGINVAL_BLOCKSIZES "1;250;512" CACHE STRING "list of blocksizes to test in pluginval" )
37
37
38
- mark_as_advanced (PLUGINVAL_PROGRAM PLUGINVAL_STRICTNESS PLUGINVAL_REPEATS PLUGINVAL_SAMPLERATES PLUGINVAL_BLOCKSIZES)
38
+ set (PLUGINVAL_OUTPUT_DIR "${CMAKE_BINARY_DIR} /pluginval" CACHE PATH "Directory to write pluginval logs to" )
39
+
40
+ mark_as_advanced (PLUGINVAL_PROGRAM PLUGINVAL_STRICTNESS PLUGINVAL_REPEATS PLUGINVAL_SAMPLERATES PLUGINVAL_BLOCKSIZES PLUGINVAL_OUTPUT_DIR)
39
41
40
42
#
41
43
@@ -110,8 +112,10 @@ function (pgm_add_pluginval_tests pluginTarget)
110
112
--strictness-level "${PLUGINVAL_STRICTNESS} "
111
113
--sample-rates "${sample_rates} "
112
114
--block-sizes "${block_sizes} "
113
- --repeat "${PLUGINVAL_REPEATS} " --randomise
114
- --validate "${plugin_artefact} " )
115
+ --repeat "${PLUGINVAL_REPEATS} "
116
+ --validate "${plugin_artefact} "
117
+ --output -dir "${PLUGINVAL_OUTPUT_DIR} "
118
+ --randomise --verbose)
115
119
116
120
message (VERBOSE "Added pluginval test for plugin target ${format_target} " )
117
121
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ set (CMAKE_CXX_STANDARD_REQUIRED ON)
25
25
set (CMAKE_CXX_VISIBILITY_PRESET hidden)
26
26
set (CMAKE_VISIBILITY_INLINES_HIDDEN ON )
27
27
28
+ set (BUILD_SHARED_LIBS OFF )
29
+
28
30
# universal binaries on Mac
29
31
set (CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING
30
32
"Architectures to build on MacOS. Set to arm64\; x86_64 to build universal (fat) binaries, or just one of those for faster build times." )
You can’t perform that action at this time.
0 commit comments