You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: code_gen/CMakeLists.txt
+67-1Lines changed: 67 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ if (INSTALL_CODE_GEN_SCRIPTS)
10
10
COMPONENT code_gen
11
11
FILES_MATCHING
12
12
PATTERN *.py
13
+
PATTERN *.py.in
13
14
PATTERN *.h
14
15
PATTERN *.cpp
15
16
PATTERN *.json
@@ -33,6 +34,10 @@ endif()
33
34
option(INSTALL_PYTHON_BINDINGS "Install python bindings"OFF) # If turned on, draws in all the custom targets below (generate_all)
34
35
cmake_dependent_option(LINK_BINDINGS_TO_RELEASE_PYTHON "Force the python bindings to implicitly link to a release python library on Windows, overriding possible debug python linking"OFF INSTALL_PYTHON_BINDINGS OFF)
35
36
37
+
option(INSTALL_LEGACY_PYTHON_BINDINGS "Install legacy python bindings"OFF) # If turned on, draws in all the custom targets below (generate_all)
38
+
cmake_dependent_option(LINK_BINDINGS_TO_RELEASE_PYTHON "Force the python bindings to implicitly link to a release python library on Windows, overriding possible debug python linking"OFF INSTALL_LEGACY_PYTHON_BINDINGS OFF)
0 commit comments