c++ - Visual Studio 2012 Boost.Python Integration -


i writing python scripts gathers data application written c++ plot , visualize data. c++ application projects bundled in relatively large visual studio 2012 solution file, while python scripts until has been written separately in other editor (e.g. notepad ++).

moreover, c++ source, sends data python script, compiled using boost.python bjam command. builds required c++/python libraries , creates .pyd extension module containing desired c++ objects want import script. done using jamroot.jam file in script directory.

i integrate these python scripts c++ solution. have created python project within solution already, don't know how invoke bjamcommand on c++ file.

is there way set project properties in visual studio invoke bjamcommand , jamroot.jam file?

you can invoke command part of either pre- or post-build step. difference if use post-build update @ end of successful build.enter image description here


Comments

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -