This website requires JavaScript.
Explore
Help
Sign In
djsundog
/
circuitpython
Watch
1
Star
0
Fork
You've already forked circuitpython
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
8ad30fa433
circuitpython
/
ports
/
windows
/
.gitignore
12 lines
78 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Windows MSVC port Extend the windows port so it compiles with the toolchain from Visual Studio 2013
2014-05-05 06:18:27 -04:00
*.user
*.*sdf
*.suo
*.sln
*.exe
*.pdb
*.ilk
*.filters
/build/*
windows: Make msvc project file support any version from VS2013 to VS2017 Instead of having the PlatformToolset property hardcoded to a specific version just set it to the value of DefaultPlatformToolset: this gets defined according to the commandline environment in which the build was started. Instead of just supporting VS2015 the project can now be built by any version from VS2013 to VS2017 and normally future versions as well, without quirks like VS asking whether you want to upgrade the project to the latest version (as was the case when opening the project in VS2017) or not being able to build at all (as was the case when opening the project in VS2013). Also adjust the .gitignore file to ignore any artefacts from VS2017.
2017-03-20 11:15:46 -04:00
.vs/*
windows/.gitignore: Ignore VC.db and VC.opendb files from VS2015 Since VS2015 update 2 .db files are used for storing browsing info, instead of .sdf files. If users don't specify a location for these files excplicitly they end up in the project directory so ignore them.
2017-02-16 05:48:01 -05:00
*.VC.*db