File: codelite_cpp.c

package info (click to toggle)
premake 3.7-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,148 kB
  • sloc: ansic: 20,490; cs: 15,185; makefile: 332
file content (364 lines) | stat: -rw-r--r-- 11,208 bytes parent folder | download
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
/**********************************************************************
 * Premake - codelite_cpp.c
 * The Code::Blocks C/C++ target
 *
 * Copyright (c) 2002-2008 Jason Perkins and the Premake project
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License in the file LICENSE.txt for details.
 **********************************************************************/

#include <stdio.h>
#include <string.h>
#include "premake.h"
#include "codelite.h"
#include "os.h"

static const char* filterLinks(const char* name);
static const char* filterLinksForPaths(const char* name);
static void list_files(const char* path, int stage);
static void print_opt(const char* opt);
static const char* printProjectDependencies(const char* name);

int codelite_cpp()
{
    const char* kind;
	int i;

	/* Write the file */
	if (!io_openfile(path_join(prj_get_pkgpath(), prj_get_pkgname(), "project")))
		return 0;

	io_print("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
	io_print("<CodeLite_Project Name=\"%s\">\n", prj_get_pkgname());

    prj_select_config(0);
	print_source_tree("", list_files);

    if (prj_is_kind("winexe") || prj_is_kind("exe"))
        kind = "Executable";
    else if (prj_is_kind("lib"))
        kind = "Static Library";
    else if (prj_is_kind("dll"))
        kind = "Dynamic Library";
    else
    {
        printf("** Unsupported project kind %s\n", prj_get_kind());
        return 0;
    }

    io_print("  <Settings Type=\"%s\">\n", kind);

	for (i = 0; i < prj_get_numconfigs(); ++i)
	{
		const char* compiler;
		const char* outfile;

		prj_select_config(i);
		
		/* Write the general setup */
		compiler = prj_is_lang("c") ? "gcc" : "g++";
        io_print("    <Configuration Name=\"%s\" CompilerType=\"gnu %s\" DebuggerType=\"GNU gdb debugger\" Type=\"%s\">\n", prj_get_cfgname(), compiler, kind );
		outfile = prj_get_target();
		io_print("      <General OutputFile=\"%s\" IntermediateDirectory=\"%s\" ", outfile, prj_get_objdir());

		if (!os_is("windows"))
			io_print("Command=\"./%s\" CommandArguments=\"\" ", path_getname(outfile));
		else
			io_print("Command=\"%s\" CommandArguments=\"\" ", path_getname(outfile));
			
		io_print("WorkingDirectory=\"%s\" ", prj_get_outdir());
		if (prj_is_kind("winexe"))
			io_print("PauseExecWhenProcTerminates=\"no\"/>\n");
		else
			io_print("PauseExecWhenProcTerminates=\"yes\"/>\n");
		
		/* Write compiler flags */
		io_print("      <Compiler Required=\"yes\" Options=\"");
		if (prj_has_flag("extra-warnings"))
			print_opt("-Wall");
		if (prj_has_flag("fatal-warnings"))
			print_opt("-Werror");
		if (prj_has_flag("no-exceptions"))
			print_opt("--no-exceptions");
		if (prj_has_flag("no-frame-pointer"))
			print_opt("-fomit-frame-pointer");
		if (prj_has_flag("no-rtti"))
			print_opt("--no-rtti");
		if (!prj_has_flag("no-symbols"))
			print_opt("-g");
		if (prj_has_flag("optimize-size"))
			print_opt("-Os");
		if (prj_has_flag("optimize-speed"))
			print_opt("-O3");
		if (prj_has_flag("optimize") && !prj_has_flag("optimize-size") && !prj_has_flag("optimize-speed"))
			print_opt("-O");
		
		/* This is debateable, but it will not hurt on any platform */
		if (prj_is_kind("dll") && !os_is("windows"))
			print_opt("-fPIC");
		
		/* Write pch support. Presently not supported, but is planned. */
		//if (prj_has_pch())
		//{
			/* Warns you if your pch file is out of date */
			//print_opt("-Winvalid-pch");
			/* Force include the pch header so the user doesn't need to */
			//io_print("-include &quot;%s&quot;;", prj_get_pch_header());
		//}
		
		print_list(prj_get_buildoptions(), "", ";", "", NULL);
		
		/* End the compiler open element */
		io_print("\">\n");

		print_list(prj_get_incpaths(), "        <IncludePath Value=\"", "\"/>\n", "", NULL);
		print_list(prj_get_defines(), "        <Preprocessor Value=\"", "\"/>\n", "", NULL);
		io_print("      </Compiler>\n");

		/* Write linker flags */
		io_print("      <Linker Required=\"yes\" Options=\"");
		
		if (prj_is_kind("dll"))
		{		
			/* Create import libraries for DLLs if we're using Cygwin or MinGW.
			 * This seems fragile to me, but I'm going to let it sit and see
			 * if anyone complains about it. */
			if (!prj_has_flag("no-import-lib") && os_is("windows"))
			{
				const char* str;

				io_print("-Wl,--out-implib=&quot;%s", prj_get_bindir());
				if (prj_get_prefix() == NULL)
					str = "lib";
				else
					str = prj_get_prefix();

				if (prj_has_importlibname())
					io_print("/%s%s.a&quot;;", str, prj_get_importlibname());
				else
					io_print("/%s%s.a&quot;;", str, path_getbasename(prj_get_target()));
			}
		}
		
		if (prj_is_kind("winexe"))
			print_opt("-mwindows");

		/* OS X has a bug, see http://lists.apple.com/archives/Darwin-dev/2006/Sep/msg00084.html */
		if (prj_has_flag("no-symbols"))
		{
			if (os_is("macosx"))
				print_opt("-Wl,-x");
			else
				print_opt("-s");
		}

		if (os_is("macosx") && prj_has_flag("dylib"))
		{
			print_opt("-dynamiclib");
			print_opt("-flat_namespace");
		}
		print_list(prj_get_linkoptions(), "", ";", "", NULL);
		io_print("\">\n");
		
		// Make a copy into a different buffer,
		// so that the same buffer is not used for the two function calls.
		strcpy(g_buffer, prj_get_bindir());
		io_print("        <LibraryPath Value=\"%s\"/>\n", g_buffer);
		if (!matches(g_buffer, prj_get_libdir()))
			io_print("        <LibraryPath Value=\"%s\"/>\n", prj_get_libdir());
		print_list(prj_get_libpaths(), "        <LibraryPath Value=\"", "\"/>\n", "", NULL);
		print_list(prj_get_links(), "        <LibraryPath Value=\"", "\"/>\n", "", filterLinksForPaths);
		print_list(prj_get_links(), "        <Library Value=\"", "\"/>\n", "", filterLinks);
		
		/* Close the linker element */
		io_print("      </Linker>\n");
		
        if (prj_find_filetype(".rc"))
        {
			io_print("      <ResourceCompiler Required=\"yes\" Options=\"");
			print_list(prj_get_resdefines(), "-D", ";", "", NULL);
			print_list(prj_get_resoptions(), "", ";", "", NULL);
			io_print("\">\n");
			print_list(prj_get_respaths(), "        <IncludePath Value=\"", "\"/>\n", "", NULL);
			io_print("      </ResourceCompiler>\n");
        }
		else
			io_print("      <ResourceCompiler Required=\"no\" Options=\"\"/>\n");
		
		/* Pre/Post build setings */
		if (prj_get_numprebuildcommands() > 0 || prj_get_numpostbuildcommands() > 0)
		{
			if (prj_get_numprebuildcommands() > 0)
			{
				io_print("      <PreBuild>\n");
				print_list(prj_get_prebuildcommands(), "        <Command Enabled=\"yes\">", "</Command>\n", "", NULL);
				io_print("      </PreBuild>\n");
			}
			else
				io_print("      <PreBuild/>\n");
			
			if (prj_get_numpostbuildcommands() > 0)
			{
				io_print("      <PostBuild>\n");
				print_list(prj_get_postbuildcommands(), "        <Command Enabled=\"yes\">", "</Command>\n", "", NULL);
				io_print("      </PostBuild>\n");
			}
			else
				io_print("      <PostBuild/>\n");
		}
		
		/* Configuration stuff that isn't supported */
		io_print("      <CustomBuild Enabled=\"no\">\n");
		io_print("        <CleanCommand></CleanCommand>\n");
		io_print("        <BuildCommand></BuildCommand>\n");
		io_print("        <SingleFileCommand></SingleFileCommand>\n");
		io_print("        <MakefileGenerationCommand></MakefileGenerationCommand>\n");
		io_print("        <ThirdPartyToolName>None</ThirdPartyToolName>\n");
		io_print("        <WorkingDirectory></WorkingDirectory>\n");
		io_print("      </CustomBuild>\n");
		io_print("      <AdditionalRules>\n");
		io_print("        <CustomPostBuild></CustomPostBuild>\n");
		io_print("        <CustomPreBuild></CustomPreBuild>\n");
		io_print("      </AdditionalRules>\n");
		io_print("    </Configuration>\n");	
	}
	/* End of the project settings */
	io_print("  </Settings>\n");
	
	/* Write project dependencies */
	for (i = 0; i < prj_get_numconfigs(); ++i)
	{
		prj_select_config(i);
		io_print("  <Dependencies name=\"%s\">\n", prj_get_cfgname());
		print_list(prj_get_links(), "    <Project Name=\"", "\"/>\n", "", printProjectDependencies);
		io_print("  </Dependencies>\n");
	}
	
	/* End of the project file */
	io_print("</CodeLite_Project>\n");

	io_closefile();
	return 1;
}

static void print_opt(const char* opt)
{
	io_print("%s;", opt);
}

/************************************************************************
 * List callback: scans the list of links for a package. If a link is
 * found to a sibling package, prints a dependency string for the
 * workspace file.
 ***********************************************************************/
static const char* printProjectDependencies(const char* name)
{
	int i;
	for (i = 0; i < prj_get_numpackages(); ++i)
	{
		if (matches(prj_get_pkgname_for(i), name))
		{
			io_print("    <Project Name=\"%s\"/>\n", name);
		}
	}

	return NULL;
}

/************************************************************************
 * Callback for print_source_tree()
 ***********************************************************************/

static void list_files(const char* path, int stage)
{
	static int indent = 1;
	//const char* pchSource = prj_has_pch() ? prj_get_pch_source() : NULL;

	const char* ptr = path;
	while (strncmp(ptr, "../", 3) == 0)
		ptr += 3;

	ptr = strchr(ptr, '/');
	while (ptr != NULL)
		ptr = strchr(ptr + 1, '/');

	ptr = strrchr(path, '/');
	ptr = (ptr == NULL) ? (char*)path : ptr + 1;

	switch (stage)
	{
	case WST_OPENGROUP:
		if (strlen(path) > 0 && !matches(ptr, ".."))
		{
			io_print("%*s<VirtualDirectory Name=\"%s\">\n", indent * 2, " ", ptr);
			indent++;
		}
		break;

	case WST_CLOSEGROUP:
		if (strlen(path) > 0 && !matches(ptr, ".."))
		{
			indent--;
			io_print("%*s</VirtualDirectory>\n", indent * 2, " " );
		}
		break;

	case WST_SOURCEFILE:
		io_print("%*s<File Name=\"%s\"/>\n",indent * 2, " ", path);
		break;
	}
}

/************************************************************************
 * Checks each entry in the list of package links. If the entry refers
 * to a sibling package, returns the path to that package's output
 ***********************************************************************/

static const char* filterLinks(const char* name)
{
	int i = prj_find_package(name);
	if (i >= 0)
	{
		const char* lang = prj_get_language_for(i);
		if (matches(lang, "c++") || matches(lang, "c"))
		{
			const char* target = prj_get_targetname_for(i);
			return path_getname(target);
		}
		else
		{
			return NULL;
		}
	}
	else
	{
		return name;
	}
}

static const char* filterLinksForPaths(const char* name)
{
	int i = prj_find_package(name);
	if (i >= 0)
	{
		const char* lang = prj_get_language_for(i);
		if (matches(lang, "c++") || matches(lang, "c"))
		{
			const char* target = prj_get_target_for(i);
			const char* dir = path_getdir(target);
			if (!prj_has_libpath(dir))
			{
				return dir;
			}
		}
	}
	return NULL;
}