engine.properties 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #
  2. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  3. #
  4. # Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved.
  5. #
  6. # Oracle and Java are registered trademarks of Oracle and/or its affiliates.
  7. # Other names may be trademarks of their respective owners.
  8. #
  9. # The contents of this file are subject to the terms of either the GNU General Public
  10. # License Version 2 only ("GPL") or the Common Development and Distribution
  11. # License("CDDL") (collectively, the "License"). You may not use this file except in
  12. # compliance with the License. You can obtain a copy of the License at
  13. # http://www.netbeans.org/cddl-gplv2.html or nbbuild/licenses/CDDL-GPL-2-CP. See the
  14. # License for the specific language governing permissions and limitations under the
  15. # License. When distributing the software, include this License Header Notice in
  16. # each file and include the License file at nbbuild/licenses/CDDL-GPL-2-CP. Oracle
  17. # designates this particular file as subject to the "Classpath" exception as provided
  18. # by Oracle in the GPL Version 2 section of the License file that accompanied this code.
  19. # If applicable, add the following below the License Header, with the fields enclosed
  20. # by brackets [] replaced by your own identifying information:
  21. # "Portions Copyrighted [year] [name of copyright owner]"
  22. #
  23. # Contributor(s):
  24. #
  25. # The Original Software is NetBeans. The Initial Developer of the Original Software
  26. # is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun Microsystems, Inc. All
  27. # Rights Reserved.
  28. #
  29. # If you wish your version of this file to be governed by only the CDDL or only the
  30. # GPL Version 2, indicate your decision by adding "[Contributor] elects to include
  31. # this software in this distribution under the [CDDL or GPL Version 2] license." If
  32. # you do not indicate a single choice of license, a recipient has the option to
  33. # distribute your version of this file under either the CDDL, the GPL Version 2 or
  34. # to extend the choice of license to its licensees as provided above. However, if you
  35. # add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the
  36. # option applies only if the new code is made subject to such option by the copyright
  37. # holder.
  38. #
  39. # whether to build native components or not; 'true'/'false'
  40. # * the engine has a bunch of native code dependencies, thus it is feasible to
  41. # rebuild them every time
  42. build.native=true
  43. # whether to build the netbeans part of the project or not; 'true'/'false'
  44. # * essentially the engine IS a netbeans project, thus we should always build
  45. # it
  46. build.nbproject=true
  47. # dummy value for the custom parameter; which will be passed to the netbeans
  48. # project build script; more sensible value is present in the base product
  49. # build script
  50. nb.custom.parameter=-Dtrue=true
  51. # name of the distributive file for the netbeans project
  52. # * ${engine.dist.file.name} is expected to be defined in the derivative
  53. # instance build script
  54. nbproject.dist.file.name=${engine.dist.file.name}
  55. # path to the engine's distributive file; the file at this path would be
  56. # considered the result of the build script and be copied to the distributives
  57. # directory
  58. nbproject.dist.file=${nbproject.dist.dir}/${nbproject.dist.file.name}
  59. # names of the distributive files for the native jni libraries for the engine
  60. native.dist.file.windows=windows.dll
  61. native.dist.file.linux=linux.so
  62. native.dist.file.solaris-x86=solaris-x86.so
  63. native.dist.file.solaris-sparc=solaris-sparc.so
  64. native.dist.file.macosx=macosx.dylib