File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ environment:
12
12
build_script :
13
13
- cmd : cmake -Dlslgitrevision=%APPVEYOR_REPO_COMMIT% -Dlslgitbranch=%APPVEYOR_REPO_BRANCH% -S . -B build -T v140,host=x86 -A %LSLARCH%
14
14
- sh : cmake -Dlslgitrevision=${APPVEYOR_REPO_COMMIT} -Dlslgitbranch=${APPVEYOR_REPO_BRANCH} -S . -B build
15
- - cmake -DLSL_UNITTESTS=1 build
15
+ - cmake -DLSL_UNITTESTS=ON -DLSL_BUILD_EXAMPLES=ON build
16
16
- cmd : cmake --build build --config Release -j --target package
17
17
- sh : /usr/bin/time -v cmake --build build -j 3 --target package
18
18
- sh : cmake -DCPACK_DEBIAN_PACKAGE_SHLIBDEPS=ON build
Original file line number Diff line number Diff line change 30
30
cmake --version
31
31
cmake -E make_directory build
32
32
cd build
33
- cmake -DLSL_UNITTESTS=1 -DCPACK_PACKAGE_DIRECTORY=${PWD}/package ..
33
+ cmake -DLSL_UNITTESTS=ON -DLSL_BUILD_EXAMPLES=ON -DCPACK_PACKAGE_DIRECTORY=${PWD}/package ..
34
34
- name : make
35
35
run : cmake --build build --config Release -j --target install
36
36
- name : package
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ before_script:
12
12
- brew upgrade cmake
13
13
script :
14
14
- cmake --version
15
- - cmake -S . -B build ${CMakeArgs} -DLSL_UNITTESTS=1
15
+ - cmake -S . -B build ${CMakeArgs} -DLSL_UNITTESTS=ON -DLSL_EXAMPLES=ON
16
16
- cd build
17
- - cmake --build . --config Release --target install
17
+ - cmake --build . --config Release -j - -target install
18
18
- testing/lsl_test_internal || true
19
19
- testing/lsl_test_exported
20
20
- cpack
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.5)
2
- project (Examples
2
+ project (lslexamples
3
3
LANGUAGES C CXX
4
4
VERSION 0.2.0)
5
5
find_package (LSL REQUIRED
You can’t perform that action at this time.
0 commit comments