Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
ddb3dfdf
Commit
ddb3dfdf
authored
Oct 17, 2004
by
Andy Cedilnik
Browse files
ENH: Specify full path to the executable
parent
3de70102
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/kwsys/CMakeLists.txt
View file @
ddb3dfdf
...
...
@@ -428,12 +428,17 @@ IF(KWSYS_STANDALONE)
TARGET_LINK_LIBRARIES
(
test1
${
KWSYS_NAMESPACE
}
)
TARGET_LINK_LIBRARIES
(
testCommandLineArguments
${
KWSYS_NAMESPACE
}
)
SET
(
EXEC_DIR
"
${
CMAKE_CURRENT_BINARY_DIR
}
"
)
IF
(
EXECUTABLE_OUTPUT_PATH
)
SET
(
EXEC_DIR
"
${
EXECUTABLE_OUTPUT_PATH
}
"
)
ENDIF
(
EXECUTABLE_OUTPUT_PATH
)
IF
(
BUILD_TESTING
)
ADD_TEST
(
testProcess-1 testProcess 1
)
ADD_TEST
(
testProcess-2 testProcess 2
)
ADD_TEST
(
testProcess-3 testProcess 3
)
ADD_TEST
(
testProcess-4 testProcess 4
)
ADD_TEST
(
testProcess-5 testProcess 5
)
ADD_TEST
(
testProcess-6 testProcess 6
)
ADD_TEST
(
testProcess-1
${
EXEC_DIR
}
/
testProcess 1
)
ADD_TEST
(
testProcess-2
${
EXEC_DIR
}
/
testProcess 2
)
ADD_TEST
(
testProcess-3
${
EXEC_DIR
}
/
testProcess 3
)
ADD_TEST
(
testProcess-4
${
EXEC_DIR
}
/
testProcess 4
)
ADD_TEST
(
testProcess-5
${
EXEC_DIR
}
/
testProcess 5
)
ADD_TEST
(
testProcess-6
${
EXEC_DIR
}
/
testProcess 6
)
ENDIF
(
BUILD_TESTING
)
ENDIF
(
KWSYS_STANDALONE
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment