-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #134 from Ultimaker/CURA-8640_PyQt6_upgrade
Cura 8640 PyQt6 upgrade
- Loading branch information
Showing
32 changed files
with
758 additions
and
843 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -69,3 +69,4 @@ nbproject/* | |
|
||
# Generated headers | ||
/src/ArcusExport.h | ||
/cmake-build-* |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,13 @@ | ||
from sipbuild import SetuptoolsBuilder | ||
|
||
|
||
class CMakeBuilder(SetuptoolsBuilder): | ||
def __init__(self, project, **kwargs): | ||
print("Using the CMake builder") | ||
super().__init__(project, **kwargs) | ||
|
||
def build(self): | ||
""" Only Generate the source files """ | ||
print("Generating the source files") | ||
self._generate_bindings() | ||
self._generate_scripts() |
Oops, something went wrong.