Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vs2008_solution.c « vs200x « actions « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d116a53453a79f48c21dd1d54b39527e28732741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
 * \file   vs2008_solution.c
 * \brief  Visual Studio 2008 solution generation functions.
 * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
 */

#include "premake.h"
#include "vs200x_solution.h"


/**
 * Write the Visual Studio 2008 solution file signature.
 */
int vs2008_solution_signature(Solution sln, Stream strm)
{
	int z;
	UNUSED(sln);
	stream_set_newline(strm, "\r\n");
	z  = stream_write_unicode_marker(strm);
	z |= stream_writeline(strm, "");
	z |= stream_writeline(strm, "Microsoft Visual Studio Solution File, Format Version 10.00");
	z |= stream_writeline(strm, "# Visual Studio 2008");
	return z;
}