Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
janwilmans authored Nov 10, 2019
1 parent 43b2616 commit 6e82bab
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@ To work around this:
4) all references show ok now, the project should build and intellisence should work and you will not have to do this again.

# Example projects

Note that copperspice requires a compliant C++14 compiler, which in case of visual studio means 2017 15.8 or greater.

```
#if _MSC_VER < 1914
# error "CopperSpice requires Visual Studio 2017 Version 15.8 or greater"
#endif
```


## visual studio 2017 / HelloHerbs
A simple but odd hybrid console / GUI application.
- uses only code to describe the UI (no XML and no designer tools required)
Expand All @@ -51,11 +61,4 @@ This is an example you want to use if you want a commandline application.
Basically the same example, but with an .ui (XML) file that is automatically compiled into a header file.
This is the example you want to use for a normal window GUI application.

Note that copperspice requires a compliant C++14 compiler, which in case of visual studio means 2017 15.8 or greater.

```
#if _MSC_VER < 1914
# error "CopperSpice requires Visual Studio 2017 Version 15.8 or greater"
#endif
```

0 comments on commit 6e82bab

Please sign in to comment.