Skip to content

Commit c6f298c

Browse files
committed
renamed a lot of files and minor corrections (all from the first review)
1 parent 75091e8 commit c6f298c

141 files changed

Lines changed: 265 additions & 219 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
branch = master
99
[submodule "extern/pybind11"]
1010
path = extern/pybind11
11-
url = ../../pybind/pybind11
11+
url = https://github.com/pybind/pybind11.git
1212
branch = stable
File renamed without changes.
File renamed without changes.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
testSuite = [ 'examples', 'local', 'abcTasks' ]
1+
testSuite = [ 'examples', 'abcTasks' ]
22

33
if 'boost' in get_option('executionStateType') and 'pthreads' in get_option('processingUnitType')
4-
threading = executable('threading', [ 'source/pthreads.cpp'], dependencies: [ TaskRBuildDep ])
4+
threading = executable('threading', [ 'cpp/pthreads.cpp'], dependencies: [ TaskRBuildDep ])
55

66
if get_option('buildTests')
77
test('threading', threading, args : [ ], suite: testSuite, workdir: threading.path() + '.p' )
88
endif
99
endif
1010

1111
if 'nosv' in get_option('executionStateType') and 'nosv' in get_option('processingUnitType')
12-
nosv = executable('nosv', [ 'source/nosv.cpp'], dependencies: [ TaskRBuildDep ])
12+
nosv = executable('nosv', [ 'cpp/nosv.cpp'], dependencies: [ TaskRBuildDep ])
1313

1414
if get_option('buildTests')
1515
test('nosv', nosv, args : [ ], is_parallel : false, suite: testSuite, workdir: nosv.path() + '.p')
@@ -19,7 +19,7 @@ endif
1919
if get_option('buildPyTaskR') and get_option('buildTests')
2020
test('pyTaskR',
2121
py,
22-
args : [ 'py_source/main.py' ],
22+
args : [ 'python/main.py' ],
2323
is_parallel : false,
2424
env: ['PYTHONPATH=' + meson.project_build_root() + '/include/pytaskr/'],
2525
suite: testSuite,
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
testSuite = [ 'examples', 'local', 'cholesky' ]
1+
testSuite = [ 'examples', 'cholesky' ]
22

33
choleskyDep = declare_dependency(
44
dependencies: [ TaskRBuildDep, dependency('openblas', required: true) ],

0 commit comments

Comments
 (0)