Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
OpenFlipper-Free
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
23
Issues
23
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenFlipper-Free
OpenFlipper-Free
Commits
f40f6ce7
Commit
f40f6ce7
authored
Nov 24, 2020
by
Johannes Lenzen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added iwyu to cmake calls
parent
a03ed818
Pipeline
#15948
failed with stages
in 46 minutes and 48 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
.gitignore
.gitignore
+2
-0
CI/ci-linux-build.sh
CI/ci-linux-build.sh
+1
-1
CI/ci-linux-test.sh
CI/ci-linux-test.sh
+1
-1
No files found.
.gitignore
View file @
f40f6ce7
...
...
@@ -10,6 +10,8 @@
/build_dbg
/build_rel
/build
/cmake-build-debug
/.idea
# QtCreator specific annoying files
...
...
CI/ci-linux-build.sh
View file @
f40f6ce7
...
...
@@ -43,7 +43,7 @@ if [ ! -d $BUILDPATH ]; then
fi
cd
$BUILDPATH
cmake
-DOPENFLIPPER_BUILD_UNIT_TESTS
=
TRUE
-DSTL_VECTOR_CHECKS
=
ON
$OPTIONS
../
cmake
-DOPENFLIPPER_BUILD_UNIT_TESTS
=
TRUE
-DSTL_VECTOR_CHECKS
=
ON
-DCMAKE_CXX_INCLUDE_WHAT_YOU_USE
=
"iwyu"
$OPTIONS
../
#build it
make
$MAKE_OPTIONS
...
...
CI/ci-linux-test.sh
View file @
f40f6ce7
...
...
@@ -76,7 +76,7 @@ then
fi
# Run cmake to make sure the tests are configured correctly for this system
cmake
-DOPENFLIPPER_BUILD_UNIT_TESTS
=
TRUE
-DSTL_VECTOR_CHECKS
=
ON
$OPTIONS
../
cmake
-DOPENFLIPPER_BUILD_UNIT_TESTS
=
TRUE
-DSTL_VECTOR_CHECKS
=
ON
-DCMAKE_CXX_INCLUDE_WHAT_YOU_USE
=
"iwyu"
$OPTIONS
../
#tell the location to the libs from build jobs
export
LD_LIBRARY_PATH
=
$(
pwd
)
/Build/lib:
$LD_LIBRARY_PATH
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment