CMakeLists.txt 219 B

12345678910111213
  1. add_executable(PythonInitTest PythonInitTest.cc)
  2. include_directories(/usr/include/python2.6)
  3. target_link_libraries(PythonInitTest
  4. boost_python
  5. python2.6
  6. glog
  7. gtest
  8. gmock
  9. )
  10. add_test(PythonInitTest PythonInitTest)