Code: Select all
project
Makefile
include
some_header.h
other_header.h
src
some_soruce.cpp
Moderator: Coders of Rage
Code: Select all
project
Makefile
include
some_header.h
other_header.h
src
some_soruce.cpp
Code: Select all
Assets/ Sources for asset files (psd, ai, blend, etc).
Binaries/ Serves as the working directory when debugging under
Windows/Linux. On Windows/Linux, the files in this
directory will be installed in the same folder as the
executable. On Mac OS X, the files in this directory
will be copied into the bundle's Resources folder.
Assets/ Final asset files (png, xml, 3ds, etc).
Builds/ Files for building the project.
Visual Studio/ Files for building the project under Visual Studio.
.sln Visual Studio solution file.
.vcxproj Visual Studio project file.
Headers/ Third-party header files.
Libraries/ Third-party library files.
Debug/ Debug versions of third-party libraries.
Release/ Release versions of third-party libraries.
Linux/ Files for building the project under Linux.
Makefile Solution build script.
Headers/ Third-party header files.
Libraries/ Third-party library files.
Xcode/ Files for building the project under Xcode.
.xcworkspace Xcode solution file.
.xcodeproj Xcode project file.
Headers/ Third-party header files.
Libraries/ Third-party library files.
Sources/ Sources for code files (cpp, hpp, etc).