質問

Can I embed python into my app using only boost:python? Will I need any additional libraries to bring with my app?

Or is there any embeddable language which natively supports unicode chars and does not need any libraries to bring with app

役に立ちましたか?

解決

To integrate Python in a C++ application you can use Boost.Python but you can also interface the Python C API directly.

For both you need the Python library, for Boost.Python approach you also need to link to the Boost.Python library.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top