-
Notifications
You must be signed in to change notification settings - Fork 5
Installation
Steve Hannah edited this page Oct 15, 2015
·
8 revisions
-
Download [cn1css-ant-task.jar](https://github.com/shannah/cn1-css/releases/download/1.0/cn1css-ant-task.jar) and copy into your project’s
libdirectory. -
Copy the following snippet into you project’s
build.xmlfile:<taskdef name="compileCSS" classname="com.codename1.ui.css.CN1CSSCompileTask" classpath="lib/cn1css-ant-task.jar"/> <target name="compile-css"> <compileCSS/> </target>
-
Change the following line in your project’s
build.xmlfile:<target name="-pre-compile">
to
<target name="-pre-compile" depends="compile-css">