This website works better with JavaScript.
Explore
Help
Sign In
Chiebot-Mirror
/
meson
Watch
8
Star
0
Fork
You've already forked meson
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
The Meson Build System
http://mesonbuild.com/
8343
Commits
80
Branches
175
Tags
89 MiB
Tree:
4340f76a7a
meson
/
test cases
/
linuxlike
/
7 library versions
/
exe.orig.c
10 lines
106 B
Raw
Normal View
History
Unescape
Escape
tests: Minor fixes to the library-usage tests Actually use the myFunc() symbol from the library, and actually run the built executable on macOS.
8 years ago
int
myFunc
(
void
)
;
Add manual-linking tests to Linux and Windows In this test, we try to manually link against the generated library to create an executable and then run it to verify that it works. Also test for all possible library versioning in the versioning tests on Windows. Even though they yield the same dll naming, we should still test it.
8 years ago
int
main
(
int
argc
,
char
*
argv
[
]
)
{
tests: Minor fixes to the library-usage tests Actually use the myFunc() symbol from the library, and actually run the built executable on macOS.
8 years ago
if
(
myFunc
(
)
=
=
55
)
return
0
;
return
1
;
Add manual-linking tests to Linux and Windows In this test, we try to manually link against the generated library to create an executable and then run it to verify that it works. Also test for all possible library versioning in the versioning tests on Windows. Even though they yield the same dll naming, we should still test it.
8 years ago
}