Skip to content

Commit 0ab422c

Browse files
committed
rename lib directory
1 parent b702456 commit 0ab422c

22 files changed

+8
-8
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.7)
22

33
project(softcut)
4-
add_subdirectory(softcut)
4+
add_subdirectory(softcut-lib)
55
add_subdirectory(clients/softcut_jack_osc)

clients/softcut_jack_osc/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set(SRC src/main.cpp
1313

1414
add_executable(softcut_jack_osc ${SRC})
1515

16-
include_directories(../../softcut/include)
16+
include_directories(../../softcut-lib/include)
1717

1818
target_link_libraries(softcut_jack_osc softcut jack lo pthread sndfile)
1919

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

waf softcut-lib/waf

File renamed without changes.

wscript softcut-lib/wscript

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ def configure(conf):
66

77
def build(bld):
88
softcut_sources = [
9-
'softcut/src/FadeCurves.cpp',
10-
'softcut/src/ReadWriteHead.cpp',
11-
'softcut/src/SubHead.cpp',
12-
'softcut/src/Svf.cpp',
13-
'softcut/src/Voice.cpp',
9+
'src/FadeCurves.cpp',
10+
'src/ReadWriteHead.cpp',
11+
'src/SubHead.cpp',
12+
'src/Svf.cpp',
13+
'src/Voice.cpp',
1414
]
1515

1616
bld.stlib(
1717
target = 'softcut',
1818
features = 'cxx cxxstlib',
1919
source = softcut_sources,
20-
includes = ['softcut/include'],
20+
includes = ['include'],
2121
cflags = ['-O3', '-Wall', '-Wextra'],
2222
cxxflags = ['--std=c++14']
2323
)

0 commit comments

Comments
 (0)