You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cppcheclipse is an Eclipse plugin which integrates [cppcheck](http://sourceforge.net/projects/cppcheck/) with the [CDT project](https://eclipse.org/cdt/). You can run/configure cppcheck from the Eclipse UI.
2
2
3
-
To build the project on the command line it requires maven and Linux platform (maven under Windows will not compile the project properly). To compile run following commands:
3
+
To build the project on the command line it requires maven, Run the following commands:
4
4
```bash
5
5
cd com.googlecode.cppcheclipse.parent
6
6
mvn clean verify
7
7
```
8
8
It will not increment the version number nor deploy/publish/release the artifact. You can find the built p2 repository now in ../com.googlecode.cppcheclipse.repository/target in zip format.
9
9
10
+
**NOTES:**
11
+
12
+
* Under Windows the `mvn clean verify` will fail because the unit test paths in unix format. As workaround skip the tests `mvn clean` should build successfully.
13
+
* Maven build will fail if Java 9 is used, while it will work under Java 8.
14
+
10
15
11
16
Further information on how to use and install cppcheclipse can be found in the [wiki](https://github.com/kwin/cppcheclipse/wiki).
0 commit comments