-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
lainsce
committed
May 27, 2017
1 parent
667116a
commit 4292947
Showing
9 changed files
with
95 additions
and
48 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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef CONFIG_H | ||
#define CONFIG_H | ||
|
||
#cmakedefine DATADIR "@DATADIR@" | ||
#cmakedefine PKGDATADIR "@PKGDATADIR@" | ||
#cmakedefine GETTEXT_PACKAGE "@GETTEXT_PACKAGE@" | ||
#cmakedefine RELEASE_NAME "@RELEASE_NAME@" | ||
#cmakedefine VERSION "@VERSION@" | ||
#cmakedefine VERSION_INFO "@VERSION_INFO@" | ||
#cmakedefine PLUGINDIR "@PLUGINDIR@" | ||
|
||
#endif // CONFIG_H |
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "config.h")] | ||
namespace Build { | ||
public const string DATADIR; | ||
public const string PKGDATADIR; | ||
public const string GETTEXT_PACKAGE; | ||
public const string RELEASE_NAME; | ||
public const string VERSION; | ||
public const string VERSION_INFO; | ||
public const string PLUGINDIR; | ||
} |