【发布时间】:2015-04-22 09:00:03
【问题描述】:
我正在尝试按照一些在线说明构建软件。
cd app
mkdir -p build/Release
cd build/Release
cmake ../..
make installpyplusplus && cmake .
make .
我的问题:
-
cmake之后的“../..”是什么意思? -
make后面的点有什么意义? - 什么会'make installpyplusplus && cmake.' ?
【问题讨论】:
-
请阅读this。我在其中添加
../..是父目录的父目录(在 Unix 系统中,在 Windows 中为..\..)
标签: unix directory cmake makefile