-
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.
add pymod.find_installation patch to cli11
I think this works??
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 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,15 @@ | ||
diff --git a/single-include/meson.build b/single-include/meson.build | ||
index ee58adf..decf8b2 100644 | ||
--- a/single-include/meson.build | ||
+++ b/single-include/meson.build | ||
@@ -2,7 +2,9 @@ | ||
# meson.build here when generating the single file header so that it is placced | ||
# in the correct location. | ||
|
||
-prog_python = find_program('python') | ||
+pymod = import('python') | ||
+prog_python = pymod.find_installation() | ||
+message('did this work???? I don t know') | ||
|
||
single_main_file = files('CLI11.hpp.in') | ||
|