remove python and even
This commit is contained in:
parent
0c37551766
commit
1c07e198c9
@ -91,7 +91,7 @@ INCLUDE_DIRECTORIES(
|
||||
${Thirdparty}/OpenSceneGraph-3.6.5/include
|
||||
${Thirdparty}/osgOcean/include
|
||||
${Thirdparty}/matlab/include
|
||||
${Thirdparty}/Python39/include
|
||||
# ${Thirdparty}/Python39/include
|
||||
)
|
||||
|
||||
LINK_DIRECTORIES(
|
||||
@ -100,7 +100,7 @@ INCLUDE_DIRECTORIES(
|
||||
${Thirdparty}/OpenSceneGraph-3.6.5/lib
|
||||
${Thirdparty}/osgOcean/lib
|
||||
${Thirdparty}/matlab/lib/win64/microsoft
|
||||
${Thirdparty}/Python39/libs
|
||||
# ${Thirdparty}/Python39/libs
|
||||
)
|
||||
|
||||
if(MSVC)
|
||||
@ -169,7 +169,7 @@ target_link_libraries(
|
||||
osgSim
|
||||
libMatlabDataArray
|
||||
libMatlabEngine
|
||||
python39
|
||||
# python39
|
||||
)
|
||||
|
||||
if(${QT_VERSION_MAJOR} LESS 6)
|
||||
|
@ -31,11 +31,11 @@ void Application::Init() {
|
||||
Singleton<EntitiesManager>::Create(this);
|
||||
Singleton<WorkSpaceManager>::Create(this);
|
||||
Singleton<NetDriver>::Create(this);
|
||||
Singleton<PythonModule>::Create(this);
|
||||
//Singleton<PythonModule>::Create(this);
|
||||
}
|
||||
|
||||
void Application::Uninit() {
|
||||
Singleton<PythonModule>::Destory();
|
||||
//Singleton<PythonModule>::Destory();
|
||||
Singleton<NetDriver>::Destory();
|
||||
Singleton<WorkSpaceManager>::Destory();
|
||||
Singleton<EntitiesManager>::Destory();
|
||||
|
@ -1,3 +1,4 @@
|
||||
#if 0
|
||||
#include "python/PythonModule.h"
|
||||
|
||||
#include <assert.h>
|
||||
@ -86,3 +87,4 @@ bool PythonModule::InitEnv() {
|
||||
}
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
@ -1,5 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#if 0
|
||||
#include <unordered_map>
|
||||
|
||||
#include <QObject>
|
||||
@ -27,3 +28,4 @@ private:
|
||||
|
||||
|
||||
};
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user