Changeset 5418 in osm for applications


Ignore:
Timestamp:
2007-11-10T02:54:05+01:00 (17 years ago)
Author:
ulf
Message:

change the install target, so it uses the right home dir even on windows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/openvisible/build.xml

    r5326 r5418  
    11<project name="openvisible" default="dist" basedir=".">
     2
     3  <!-- josm "user home" directory depends on the platform used (windows has a different place than unix/linux) -->
     4  <property environment="env"/>
     5  <condition property="josm.home.dir" value="${env.APPDATA}/JOSM" else="${user.home}/.josm">
     6    <and>
     7      <os family="windows"/>
     8    </and>
     9  </condition>
    210
    311  <!-- compilation properties -->
    412  <property name="josm.build.dir" value="../../core"/>
    5   <property name="josm.home.dir" value="${user.home}/.josm"/>
     13  <property name="josm.plugins.dir" value="${josm.home.dir}/plugins"/>
    614  <property name="plugin.build.dir" value="build"/>
    715  <property name="plugin.dist.dir" value="../dist"/>
     
    6977
    7078  <target name="install" depends="dist">
    71     <copy file="${plugin.dist.dir}/${plugin.jar}" todir="${josm.home.dir}/plugins" />
     79    <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
    7280    <!--
    7381        <copy todir="${josm.home.dir}/plugins">
Note: See TracChangeset for help on using the changeset viewer.