Click here to Skip to main content
15,889,808 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I like XP,so I take it in practice.
My project is be coded by C++ in Windows OS.
I use cruiseControl+SVN+Ant,how can I integrate GoogleTest UnitTest in them?
thanks.!
the build.xml:
HTML
<project name="ETRA CAD Server" default="all">
    <target name="all" depends="clean, compile, sleep" />
       <target name="clean">
        <delete dir="target" quiet="true" />
    </target>
       <target name="compile">
        <exec executable="cmd.exe">
		<arg value="/c" />
		<arg value="J:/Program Files/CruiseControl/projects/ETRA CAD Server/CAD Server/test.bat" /> 
		<arg value="/p" />
        </exec>
    </target>
  
      <target name="sleep">
        <echo message="Sleeping for a while so you can see the build in the new dashboard" />
        <sleep seconds="10" />
    </target>
    <target name="test" depends="compile">
    <big>how can I code in here?  </big>
    </target>
</project>



Is there anynone can help me?thanks
Posted
Updated 24-Oct-11 23:34pm
v7

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900