Skip to content

Teivaz/vcxproj-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

Visual Studio 2013/2015 C++ project file generator.

Create .vcxproj from sources directly

Script will recursively search for the C++ files starting from current directory. All files found will be placed included in the project file. Also will generate .filters file to preserv folder structure within project.

Usage

  1. Download script here
  2. Put it to the root folder of your sources
  3. Run it
  4. Star this repo

take a set of source files copy this script there run it enjoy your project

Settings

In case you need to customize you have following settings:

PATHS_TO_SEARCH = ['.']
PROJECT_NAME = '' # by default will use current directory name
PLATFORMS = ['Win32']
CONFIGURATIONS = ['Debug', 'Release']

HEADER_EXT = ['.h', '.inl', '.hpp']
SOURCE_EXT = ['.c', '.cc', '.cpp']
VS_VERSION = '2015' # 2013 or 2015

Releases

No releases published

Packages

No packages published

Languages