-
-
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.
Implement in-tree build and move generated files under build directory
- Moves generated file paths. - Replaces CMAKE_PROJECT_NAME with PROJECT_NAME. - Replaces CMAKE_PROJECT_VERSION with PROJECT_VERSION. - Adds a condition that checks CMAKE_SOURCE_DIR. - Avoids finding packages such as libobs - Does not create installer files.
- Loading branch information
Showing
9 changed files
with
58 additions
and
51 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 |
---|---|---|
|
@@ -8,6 +8,3 @@ | |
|
||
.vscode | ||
.idea | ||
|
||
# ignore generated files | ||
*.generated.* |
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,4 +1,5 @@ | ||
PLUGIN_NAME="@CMAKE_PROJECT_NAME@" | ||
PLUGIN_VERSION="@CMAKE_PROJECT_VERSION@" | ||
PLUGIN_NAME="@PROJECT_NAME@" | ||
PLUGIN_VERSION="@PROJECT_VERSION@" | ||
MACOS_BUNDLEID="@MACOS_BUNDLEID@" | ||
LINUX_MAINTAINER_EMAIL="@LINUX_MAINTAINER_EMAIL@" | ||
LINUX_MAINTAINER_EMAIL="@LINUX_MAINTAINER_EMAIL@" | ||
PKG_SUFFIX='@PKG_SUFFIX@' |
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