File tree 2 files changed +13
-7
lines changed 2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,18 @@ Framework to serve as a starting point for Awesomium tutorials.
5
5
6
6
Please see: http://wiki.awesomium.com/tutorials
7
7
8
- ## Setting Up on Windows
8
+ ### Setting Up on Windows
9
9
10
- 1 . Create a new Visual Studio (Win32) project with the files located in the "src" directory.
11
- 2 . Only filenames ending in ` _win ` or those that do not specify a platform should be added to your project.
10
+ 1 . Create a new Visual Studio project (Visual C++ / Win32 project)
11
+ 2 . Click Next and select 'Windows application' and 'Empty project' under settings.
12
+ 3 . Add the files contained within the ` src ` folder to your project, excluding any filenames ending with ` _mac ` .
13
+ 4 . Open up project properties and add the includes and proper linker settings for Awesomium.
14
+ 5 . Copy the Awesomium DLLs and binary dependencies to your working path.
15
+ 6 . Follow the tutorial by modifying the ` main.cc ` file.
12
16
13
- ## Setting Up on Mac OSX
17
+ ### Setting Up on Mac OSX
14
18
15
- 1 . Create a new XCode (Cocoa) project with the files located in the "src" directory.
16
- 2 . Only filenames ending in ` _mac ` or those that do not specify a platform should be added to your project.
19
+ 1 . Create a new XCode project (empty Cocoa project).
20
+ 2 . Add the files contained within the ` src ` folder to your project, excluding any filenames ending with ` _win ` .
21
+ 3 . Add the dependency for the Awesomium framework.
22
+ 4 . Follow the tutorial by modifying the ` main.cc ` file.
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class TutorialApp : public Application::Listener {
31
31
32
32
// Inherited from Application::Listener
33
33
virtual void OnLoaded () {
34
- view_ = View::Create (512 , 512 );
34
+ view_ = View::Create (500 , 300 );
35
35
// < Set up your View here. >
36
36
}
37
37
You can’t perform that action at this time.
0 commit comments