tutorial-framework
Framework to serve as a starting point for Awesomium tutorials.
Please see: http://wiki.awesomium.com/tutorials
Setting Up on Windows
- Create a new Visual Studio project (Visual C++ / Win32 project)
- Click Next and select 'Windows application' and 'Empty project' under settings.
- Add the files contained within the
src
folder to your project, excluding any filenames ending with _mac
.
- Open up project properties and add the includes and proper linker settings for Awesomium.
- Copy the Awesomium DLLs and binary dependencies to your working path.
- Follow the tutorial by modifying the
main.cc
file.
Setting Up on Mac OSX
- Create a new XCode project (empty Cocoa project).
- Add the files contained within the
src
folder to your project, excluding any filenames ending with _win
.
- Add the dependency for the Awesomium framework.
- Follow the tutorial by modifying the
main.cc
file.