-
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.
Version 6.4.5. Python3 used by default, without explicit request.
- Loading branch information
Charles PIGNEROL
committed
Nov 26, 2024
1 parent
0df4112
commit 7d03ab1
Showing
4 changed files
with
13 additions
and
11 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
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 |
---|---|---|
@@ -1,15 +1,12 @@ | ||
if (USE_PYTHON_3) | ||
add_subdirectory (QtPython3) | ||
if (BUILD_PY_CONSOLE) | ||
add_subdirectory (QtPyConsole3) # Bloque sur la partie moc en de rares circonstances | ||
endif (BUILD_PY_CONSOLE) | ||
elseif (USE_PYTHON_2) | ||
if (USE_PYTHON_2) | ||
add_subdirectory (QtPython) | ||
if (BUILD_PY_CONSOLE) | ||
add_subdirectory (QtPyConsole) # Bloque sur la partie moc en de rares circonstances | ||
endif (BUILD_PY_CONSOLE) | ||
else ( ) | ||
message (STATUS "========================================= VERSION DE PYTHON NON DEFINIE =========================================") | ||
message (FATAL_ERROR "==> UTILISEZ -DUSE_PYTHON_2 OU -DUSE_PYTHON_3 A LA LIGNE DE COMMANDE") | ||
add_subdirectory (QtPython3) | ||
if (BUILD_PY_CONSOLE) | ||
add_subdirectory (QtPyConsole3) # Bloque sur la partie moc en de rares circonstances | ||
endif (BUILD_PY_CONSOLE) | ||
endif (USE_PYTHON_3) | ||
|
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