-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finalized cross platform support for build system.
- Loading branch information
Showing
39 changed files
with
1,415 additions
and
302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
recursive-include bookworm/resources/soundfiles * | ||
recursive-include bookworm/resources/non_breaking_prefixes * | ||
include bookworm/bookworm.ico | ||
recursive-include bookworm/resources/docs *.html *.txt | ||
recursive-include bookworm/resources/icons *.ico | ||
recursive-include bookworm/resources/non_breaking_prefixes *.txt | ||
recursive-include bookworm/resources/soundfiles *.wav | ||
recursive-include bookworm/resources/locale *.mo | ||
recursive-exclude tests * | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,21 @@ | ||
# coding: utf-8 | ||
|
||
|
||
def check_runtime_components(): | ||
""" | ||
Make sure that critical runtime components are OK. | ||
Raise EnvironmentError. | ||
""" | ||
# TODO: Make sure that .NET Framework 4.0 or higher | ||
# is available in the target system. | ||
try: | ||
# This is a basic sanity check | ||
import clr | ||
import System | ||
except: | ||
raise EnvironmentError( | ||
"Bookworm is unable to start because some key components are missing from your system.\n" | ||
"Bookworm requires that the .NET Framework v4.0 or a later version is present in the target system.\n" | ||
"Head over to the following link to download and install the .NET Framework v4.0:\n" | ||
"https://www.microsoft.com/en-us/download/details.aspx?id=17718", | ||
) |
Oops, something went wrong.