This repository has been archived by the owner on Apr 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Anton Krug
committed
Jan 4, 2018
1 parent
5ea570f
commit a9555eb
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
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. | ||
|
||
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: | ||
To build the project on the command line it requires maven, Run the following commands: | ||
```bash | ||
cd com.googlecode.cppcheclipse.parent | ||
mvn clean verify | ||
``` | ||
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. | ||
|
||
**NOTES:** | ||
|
||
* 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. | ||
* Maven build will fail if Java 9 is used, while it will work under Java 8. | ||
|
||
|
||
Further information on how to use and install cppcheclipse can be found in the [wiki](https://github.com/kwin/cppcheclipse/wiki). |