Skip to content

Commit bcbdf37

Browse files
authored
Merge pull request #56 from TUD-STKS/update-min-cmake-version
cmake<3.5 no longer supported
2 parents d4b0f4a + 1805256 commit bcbdf37

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CMakeList.txt : CMake project for VocalTractLabApi, include source and define
22
# project specific logic here.
33
#
4-
cmake_minimum_required (VERSION 3.13)
4+
cmake_minimum_required (VERSION 3.5)
55
set(CMAKE_CXX_STANDARD 17)
66

77
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/lib/$<CONFIG>)
@@ -56,8 +56,8 @@ src/VocalTractLabApi/VocalTractLabApi.def)
5656

5757
project("VocalTractLabBackend")
5858
add_library(VocalTractLabBackend STATIC)
59-
target_include_directories (VocalTractLabBackend PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include)
60-
target_sources(VocalTractLabBackend PUBLIC ${BackendSources})
59+
target_include_directories(VocalTractLabBackend PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include)
60+
target_sources(VocalTractLabBackend PRIVATE ${BackendSources})
6161

6262

6363
include(FetchContent)

0 commit comments

Comments
 (0)