1 Star 0 Fork 2

廖贵鹏 / StaticNFrame

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.80 KB
一键复制 编辑 原始数据 按行查看 历史
xiaoyi445 提交于 2018-05-29 13:59 . fuck
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>NETICOA</groupId>
<artifactId>StaticNFrame</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>StaticNFrame</name>
<profiles>
<profile>
<id>Debug</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>Debug</name>
</property>
</activation>
<build>
<!-- To define the plugin version in your parent POM -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cxx-maven-plugin</artifactId>
<version>0.0.5-SNAPSHOT</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cxx-maven-plugin</artifactId>
<executions>
<execution>
<id>clean</id>
<phase>clean</phase>
<goals>
<goal>launch</goal>
</goals>
<configuration>
<executable>rm</executable>
<commandArgs>-rf "${basedir}/Product/build"</commandArgs>
</configuration>
</execution>
<execution>
<id>cmake</id>
<!--<phase>initialize</phase> -->
<!-- initialize is cmake goal default phase -->
<goals>
<goal>cmake</goal>
</goals>
<configuration>
<!-- ${basedir} is cmake projectDir default value -->
<projectDir>${basedir}</projectDir>
<!-- ${basedir} is cmake outsourceDir default value -->
<outsourceDir>${basedir}/Product/build</outsourceDir>
<generator>"Unix Makefiles"</generator>
<commandArgs>-DCMAKE_BUILD_TYPE=Debug</commandArgs>
</configuration>
</execution>
<execution>
<id>make</id>
<!--<phase>compile</phase>-->
<!-- compile is make goal default phase -->
<goals>
<goal>make</goal>
</goals>
<configuration>
<projectDir>${basedir}/Product/build</projectDir>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
C++
1
https://gitee.com/liaoguipeng13/StaticNFrame.git
git@gitee.com:liaoguipeng13/StaticNFrame.git
liaoguipeng13
StaticNFrame
StaticNFrame
master

搜索帮助