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.
|
#ifndef SHLIBDEPS_PRIVATE
|
|
|
|
# include "mylib.h"
|
|
|
|
int main()
|
|
{
|
|
mylib_function();
|
|
}
|
|
|
|
#else
|
|
|
|
# include "shlibdeps-with-private-lib/myprivatelib.h"
|
|
|
|
int main()
|
|
{
|
|
myprivatelib_function();
|
|
}
|
|
|
|
#endif
|