We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For Mac and Linux, the build scripts try to create an executable called shiboken in a directory which contains a subdirectory called shiboken.
To fix this do the following:
In shiboken-1.1.2/generator/
Renamed directory from shiboken to shiboken2
Updated with the following shiboken-1.1.2/generator/CMakeLists.txt
set(shiboken_SRC generator.cpp shiboken2/cppgenerator.cpp shiboken2/headergenerator.cpp shiboken2/overloaddata.cpp shiboken2/shibokengenerator.cpp shiboken2/shibokennormalize.cpp main.cpp )
if (NOT DISABLE_DOCSTRINGS) set(shiboken_SRC ${shiboken_SRC} qtdoc/qtdocgenerator.cpp) add_definitions(-DDOCSTRINGS_ENABLED) endif()
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/shiboken2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For Mac and Linux, the build scripts try to create an executable called shiboken in a directory which contains a subdirectory called shiboken.
To fix this do the following:
In shiboken-1.1.2/generator/
Renamed directory from shiboken to shiboken2
Updated with the following shiboken-1.1.2/generator/CMakeLists.txt
set(shiboken_SRC
generator.cpp
shiboken2/cppgenerator.cpp
shiboken2/headergenerator.cpp
shiboken2/overloaddata.cpp
shiboken2/shibokengenerator.cpp
shiboken2/shibokennormalize.cpp
main.cpp
)
if (NOT DISABLE_DOCSTRINGS)
set(shiboken_SRC ${shiboken_SRC} qtdoc/qtdocgenerator.cpp)
add_definitions(-DDOCSTRINGS_ENABLED)
endif()
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/shiboken2
The text was updated successfully, but these errors were encountered: