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

vs2002.c « vs200x « action « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c0c8a96ad37460c7370d4a5add3511fc5b6be26 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
 * \file   vs2002.c
 * \brief  Visual Studio 2002 project file generation action.
 * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
 */

#include <stdlib.h>
#include "premake.h"
#include "action/action.h"
#include "vs200x_solution.h"


/** The VS2002 solution writing process, for session_enumerate_objects() */
static SessionSolutionCallback Vs2002SolutionCallbacks[] = 
{
	vs2002_solution_create,
	vs2002_solution_signature,
	vs2002_solution_projects,
	vs2002_solution_configuration,
	vs2002_solution_dependencies,
	vs2002_solution_project_configuration,
	vs2002_solution_extensibility,
	NULL
};

/** The VS2002 project writing process, for session_enumerate_objects() */
static SessionProjectCallback Vs2002ProjectCallbacks[] =
{
	NULL
};


/**
 * The Visual Studio 2002 action handler.
 * \param   sess   The active session object.
 * \returns OKAY if successful.
 */
int vs2002_action(Session sess)
{
	stream_writeline(Console, "Generating project files for Visual Studio 2002...");
	return session_enumerate_objects(sess, Vs2002SolutionCallbacks, Vs2002ProjectCallbacks);
}