A Tool that iteratively searches for files (*.h
, *.cpp
, *.c
, etc.) in a given path and its subfolders to generate the *.vcxproj
and *.vcxproj.filters
files.
- Run the exe file
vcxproj_generator.exe
- Select your project folder
- Set your visual studio configuration
- Run the program
After you run the program, the vcxproj files will be generated and additionally all files found in the specified folder will be listed in the output window
HEADER_EXT = ['.h', '.in', '.hpp']
SOURCE_EXT = ['.c', '.cc', '.cpp']
NONE_EXT = ['.md', '.ld', '.gmk']
- If you want to regenerate new vcxproj files, you should first close the project in Visual Studio IDE.
- The generated project may fail to build due to SDK versions (default 8.1), so I always recommand you to check the SDK version first