-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjdee_prj.template
30 lines (30 loc) · 996 Bytes
/
jdee_prj.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
(jde-project-file-version "1.0")
(jde-set-variables
'(jde-project-root 't)
% if !jde_project_name.nil?
'(jde-project-name '<%= jde_project_name %>)
% end
% if !jde_build_function.nil?
'(jde-build-function '<%= jde_build_function %>)
% end
% if !jde_ant_program.nil?
'(jde-ant-program "./build.sh")
'(jde-ant-enable-find '<%= jde_ant_enable_find %>)
'(jde-ant-read-target '<%= jde_ant_read_target %>)
% end
% if !jde_jdk.nil?
'(jde-jdk (quote ("<%= jde_jdk %>")))
% end
'(jde-db-option-connect-socket '(nil "<%= jde_db_option_connect_socket %>"))
'(jde-compile-option-directory "<%= jde_compile_option_directory %>")
'(jde-sourcepath (quote (
% jde_sourcepath.each do |path|
"<%= path %>"
% end
)))
'(jde-global-classpath (quote (
% jde_global_classpath.each do |path|
"<%= path %>"
% end
)))
)