We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8891c3c commit 2b63b02Copy full SHA for 2b63b02
1 file changed
src/SConscript
@@ -119,6 +119,18 @@ inc_target_path = lambda f: os.path.join(env['includedir'],
119
'objcryst' + s, '').replace('version' + s, 'ObjCryst' + s))
120
include_targets = [inc_target_path(f) for f in env['lib_includes']]
121
install_include = InstallAs(include_targets, env['lib_includes'])
122
+
123
+# DEBUG installation
124
+print("\nenv['lib_includes']:")
125
+for f in env['lib_includes']:
126
+ print(f" {f.path}")
127
+print("\ninclude_targets:")
128
+for f in include_targets:
129
+ print(f" {f}")
130
+print("\ninstall-include:")
131
+for f in install_include:
132
133
134
Alias('install-include', install_include)
135
136
# install
0 commit comments