File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- cmake_minimum_required (VERSION 3.5...4.0 )
1+ cmake_minimum_required (VERSION 3.5)
22
33# The top-level CMakeLists.txt file for a project must contain a literal, direct call to the
44# `project()` command. `project()` sets up some helpful variables that describe source/binary
55# directories, and the current project version. This is a standard CMake command.
66
7+ project (PluginCollider VERSION 0.4.0)
8+
9+ enable_language (C CXX)
10+
711if (NOT SC_DIR)
812set (SC_DIR ${CMAKE_CURRENT_SOURCE_DIR} /libs/supercollider)
913endif ()
1014
11- #enable_language(C CXX)
12-
1315set (CMAKE_CXX_STANDARD 17)
1416if (NOT MSVC ) # should be enought with line above
1517set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17" )
5254 FetchContent_Declare(
5355 sndfile
5456 GIT_REPOSITORY "https://github.com/libsndfile/libsndfile"
55- GIT_TAG 1.2.2
57+ GIT_TAG 52b803f57a1f4d23471f5c5f77e1a21e0721ea0e
5658 GIT_PROGRESS TRUE
5759 GIT_SHALLOW TRUE
5860 )
@@ -163,8 +165,6 @@ endif()
163165
164166list (APPEND CMAKE_CXX_SOURCE_FILE_EXTENSIONS c)
165167
166- project (PluginCollider VERSION 0.4.0)
167-
168168add_subdirectory (libs/JUCE) # If you've put JUCE in a subdirectory called JUCE
169169
170170juce_add_plugin(PluginCollider
You can’t perform that action at this time.
0 commit comments