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

make_solution.h « make « action « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7ae51b26b73996e0fe3e2e7c772bec20639234f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * \file   make_solution.h
 * \brief  Makefile solution generation functions.
 * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
 */
#if !defined(PREMAKE_MAKE_SOLUTION_H)
#define PREMAKE_MAKE_SOLUTION_H

#include "session/session.h"

int make_solution_create(Session sess, Solution sln, Stream strm);

int gmake_solution_all_rule(Session sess, Solution sln, Stream strm);
int gmake_solution_clean_rule(Session sess, Solution sln, Stream strm);
int gmake_solution_default_config(Session sess, Solution sln, Stream strm);
int gmake_solution_phony_rule(Session sess, Solution sln, Stream strm);
int gmake_solution_projects(Session sess, Solution sln, Stream strm);
int gmake_solution_signature(Session sess, Solution sln, Stream strm);

#endif