We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7167e1a commit c6b98d4Copy full SHA for c6b98d4
src/CMakeLists.txt
@@ -74,11 +74,14 @@ set(Core_PUBLIC_HEADER
74
PythonQtUtils.h
75
PythonQtBoolResult.h
76
PythonQtThreadSupport.h
77
+ PythonQtPythonInclude.h
78
)
-set_target_properties(${PROJECT_NAME} PROPERTIES
79
+foreach( header ${Core_PUBLIC_HEADER} )
80
+ set_target_properties(${PROJECT_NAME} PROPERTIES
81
OUTPUT_NAME PythonQt-${PYTHONQT_SUFFIX}
- PUBLIC_HEADER ${Core_PUBLIC_HEADER}
-)
82
+ PUBLIC_HEADER ${header}
83
+ )
84
+endforeach()
85
unset(Core_PUBLIC_HEADER)
86
87
add_dependencies(${PROJECT_NAME} PythonQtWrapper)
0 commit comments