Change binary output path to use CMake variable

Tools that use CMake's EXECUTABLE_OUTPUT_PATH variable to
determine which binary to launch for debugging may be confused
by a relative path, so use CMake variable PROJECT_BINARY_DIR
instead.
This commit is contained in:
j883376
2013-06-21 23:21:57 -04:00
parent 2a39449f6e
commit 536e31d771
8 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -43,4 +43,4 @@ IF(UNIX)
ADD_DEFINITIONS(-fPIC)
ENDIF(UNIX)
SET(EXECUTABLE_OUTPUT_PATH ../Bin)
SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/Bin)