标签: python cmake
我有一个带有CMakeLists.txt和自定义python模块(* .py文件)的python项目,该文件与包含main的文件不在同一目录中。我使用丑陋的sys.path.append("../../path/to/module.py")。
sys.path.append("../../path/to/module.py")
如何告诉python,在哪里搜索要导入的模块?也许来自cmake的include_directories会有帮助吗?
include_directories