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
e7fd8fb1
Commit
e7fd8fb1
authored
Jan 02, 2003
by
Andy Cedilnik
Browse files
Rename libraries from c1 to testc1
parent
bdaf74b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Tests/COnly/CMakeLists.txt
View file @
e7fd8fb1
# a simple C only test case
# a simple C only test case
PROJECT
(
conly C
)
PROJECT
(
conly C
)
ADD_LIBRARY
(
c1 STATIC libc1.c
)
ADD_LIBRARY
(
test
c1 STATIC libc1.c
)
ADD_LIBRARY
(
c2 SHARED libc2.c
)
ADD_LIBRARY
(
test
c2 SHARED libc2.c
)
ADD_EXECUTABLE
(
conly conly.c foo.c foo.h
)
ADD_EXECUTABLE
(
conly conly.c foo.c foo.h
)
TARGET_LINK_LIBRARIES
(
conly
c1
c2
)
TARGET_LINK_LIBRARIES
(
conly
testc1 test
c2
)
STRING
(
ASCII 35 32 67 77 97 107 101 ASCII_STRING
)
STRING
(
ASCII 35 32 67 77 97 107 101 ASCII_STRING
)
MESSAGE
(
STATUS
"String:
${
ASCII_STRING
}
"
)
MESSAGE
(
STATUS
"String:
${
ASCII_STRING
}
"
)
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