Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Overhauled build tasks and project config #13

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions CppTools.iml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="JUnit" level="project" />
<orderEntry type="library" scope="TEST" name="JUnit" level="project" />
</component>
</module>

</module>
57 changes: 53 additions & 4 deletions CppTools_Cassiopeia.ipr → CppTools.ipr
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<properties>
<property name="IDEA_SANDBOX_HOME_PATH" value="$SANDBOX_HOME$" />
</properties>
<executeOn event="afterCompilation" target="copy_files" />
<executeOn event="afterCompilation" target="deploy_debug" />
</buildFile>
</component>
<component name="BuildJarProjectSettings">
Expand Down Expand Up @@ -306,11 +306,47 @@
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_5" assert-keyword="true" jdk-15="true" project-jdk-name="IDEA" project-jdk-type="IDEA JDK" />
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Idea" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin">
<configuration default="false" name="Clean All" type="AntRunConfiguration" factoryName="Ant Target" singleton="true">
<antsettings antfile="file://$PROJECT_DIR$/build.xml" target="clean_all" />
<method>
<option name="Make" enabled="false" />
</method>
</configuration>
<configuration default="false" name="Deploy to Debug Environment" type="AntRunConfiguration" factoryName="Ant Target" singleton="true">
<antsettings antfile="file://$PROJECT_DIR$/build.xml" target="deploy_debug" />
<method />
</configuration>
<configuration default="false" name="Package Release" type="AntRunConfiguration" factoryName="Ant Target" singleton="true">
<antsettings antfile="file://$PROJECT_DIR$/build.xml" target="package_release" />
<method />
</configuration>
<configuration default="false" name="Unit Tests" type="JUnit" factoryName="JUnit" singleton="true">
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
<module name="CppTools" />
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
<option name="ALTERNATIVE_JRE_PATH" value="" />
<option name="PACKAGE_NAME" />
<option name="MAIN_CLASS_NAME" value="" />
<option name="METHOD_NAME" value="" />
<option name="TEST_OBJECT" value="directory" />
<option name="VM_PARAMETERS" value="-ea" />
<option name="PARAMETERS" value="" />
<option name="WORKING_DIRECTORY" value="file://$MODULE_DIR$" />
<option name="ENV_VARIABLES" />
<option name="PASS_PARENT_ENVS" value="true" />
<option name="TEST_SEARCH_SCOPE">
<value defaultName="singleModule" />
</option>
<envs />
<dir value="$PROJECT_DIR$/testSrc" />
<patterns />
<method />
</configuration>
<configuration default="false" name="Run Plugin" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin">
<module name="CppTools" />
<option name="VM_PARAMETERS" value="-Xms128m -Xmx512m -XX:MaxPermSize=250m -ea " />
<option name="PROGRAM_PARAMETERS" value="" />
<log_file path="$SANDBOX_HOME$/system/log/idea.log" checked="false" skipped="true" show_all="false" alias="IDEA LOG" />
<log_file path="$SANDBOX_HOME$/system/log/idea.log" checked="true" skipped="true" show_all="false" alias="IDEA LOG" />
<RunnerSettings RunnerId="Debug">
<option name="DEBUG_PORT" value="4667" />
<option name="TRANSPORT" value="0" />
Expand All @@ -321,6 +357,19 @@
<ConfigurationWrapper RunnerId="Run" />
<method />
</configuration>
<configuration default="false" name="Clean and Run" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin" singleton="true">
<module name="CppTools" />
<option name="VM_PARAMETERS" value="-Xms128m -Xmx512m -XX:MaxPermSize=250m -ea " />
<option name="PROGRAM_PARAMETERS" value="" />
<log_file path="$SANDBOX_HOME$/system/log/idea.log" checked="false" skipped="true" show_all="false" alias="IDEA LOG" />
<method>
<option name="AntTarget" enabled="true" antfile="file://$PROJECT_DIR$/build.xml" target="clean" />
<option name="AntTarget" enabled="true" antfile="file://$PROJECT_DIR$/build.xml" target="clean_debug" />
<option name="AntTarget" enabled="true" antfile="file://$PROJECT_DIR$/build.xml" target="clean_sandbox" />
<option name="Make" enabled="true" />
<option name="AntTarget" enabled="true" antfile="file://$PROJECT_DIR$/build.xml" target="deploy_debug" />
</method>
</configuration>
</component>
<component name="ResourceManagerContainer">
<option name="myResourceBundles">
Expand All @@ -345,7 +394,7 @@
</option>
</component>
<component name="libraryTable">
<library name="junit">
<library name="JUnit">
<CLASSES>
<root url="jar://$APPLICATION_HOME_DIR$/lib/junit.jar!/" />
</CLASSES>
Expand Down
Loading