You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
308 B
29 lines
308 B
#if defined SHLIBDEPS_OTHER
|
|
|
|
# include "subdir/myotherlib.h"
|
|
|
|
int main()
|
|
{
|
|
myotherlib_function();
|
|
}
|
|
|
|
#elif defined SHLIBDEPS_PRIVATE
|
|
|
|
# include "shlibdeps-with-private-lib/myprivatelib.h"
|
|
|
|
int main()
|
|
{
|
|
myprivatelib_function();
|
|
}
|
|
|
|
#else
|
|
|
|
# include "mylib.h"
|
|
|
|
int main()
|
|
{
|
|
mylib_function();
|
|
}
|
|
|
|
#endif
|