使用特定于平台的dll文件构建RCP应用程序

时间:2013-09-24 13:42:08

标签: maven tycho multiplatform

将平台相关资源添加到分别由maven tycho插件为不同平台构建的产品的最佳做法是什么。平台配置如下所示:

        <groupId>org.eclipse.tycho</groupId>
            <artifactId>target-platform-configuration</artifactId>
            <extensions>true</extensions>
            <configuration>
                <environments>
                    <environment>
                        <os>linux</os>
                        <ws>gtk</ws>
                        <arch>x86</arch>
                    </environment>
                    <environment>
                        <os>linux</os>
                        <ws>gtk</ws>
                        <arch>x86_64</arch> 
                    ...

所有工件都完美构建但我有这个问题。就我而言,我想将平台特定的dll(或类似)文件复制到相应的工件中。这些文件由JNI使用。

非常感谢您的建议。

0 个答案:

没有答案