-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
0a1672e
commit 07fa8f1
Showing
14 changed files
with
175 additions
and
378 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 |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
dist/ | ||
.py-build-cmake_cache/ | ||
fakeroot/ | ||
.vscode/ | ||
.vscode/ | ||
conan_output/ |
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,9 @@ | ||
{ | ||
"version": 4, | ||
"vendor": { | ||
"conan": {} | ||
}, | ||
"include": [ | ||
"/mnt/Library-SSD/Codes/apngasm-python/conan_output/x86_64/CMakePresets.json" | ||
] | ||
} |
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,19 @@ | ||
from conan import ConanFile | ||
import shutil | ||
import platform | ||
|
||
class ApngasmRecipe(ConanFile): | ||
settings = 'os', 'compiler', 'build_type', 'arch' | ||
|
||
def requirements(self): | ||
self.requires("zlib/1.2.13") | ||
self.requires("libpng/1.6.40") | ||
self.requires("boost/1.83.0") | ||
self.generators = ['CMakeToolchain', 'CMakeDeps'] | ||
|
||
def build_requirements(self): | ||
if not shutil.which('cmake'): | ||
self.tool_requires("cmake/[>=3.5]") | ||
|
||
def build(self): | ||
build_type = 'Release' |
Oops, something went wrong.