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.
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