Variables in pro file.
-
wrote on 20 Apr 2022, 12:26 last edited by SPlatten
I am porting a project created using cmake files CMakeLists.txt. The existing file has a number of variables which I am trying to reproduce in the pro file:
Are they're equivalents to CMAKE_SOURCE_DIR and CMAKE_BINARY_DIR ?
Also...is there a way to set the binary output folder in the pro file?
-
I am porting a project created using cmake files CMakeLists.txt. The existing file has a number of variables which I am trying to reproduce in the pro file:
Are they're equivalents to CMAKE_SOURCE_DIR and CMAKE_BINARY_DIR ?
Also...is there a way to set the binary output folder in the pro file?
wrote on 20 Apr 2022, 12:53 last edited by@SPlatten said in Variables in pro file.:
Are they're equivalents to CMAKE_SOURCE_DIR and CMAKE_BINARY_DIR ?
I guess:
CMAKE_SOURCE_DIR
==>PWD
CMAKE_BINARY_DIR
==>OUT_PWD
disclaimer I never used cmake
2/2