Custom command path normalization added in commit v3.1.0-rc1~471^2 (add_custom_command: Normalize OUTPUT and DEPENDS paths, 2014-05-28) broke use of OBJECT_DEPENDS to bring in custom commands because the latter paths were not normalized too. Normalize them and add a test case. Reported-by: Daniel v. Gerpen
34 lines
452 B
Plaintext
34 lines
452 B
Plaintext
#include "doc1.h"
|
|
#include "foo.h"
|
|
#include "config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
int generated();
|
|
int wrapped();
|
|
|
|
#include "subdir/subdir.h"
|
|
#ifndef SUBDIR_DEF
|
|
# error SUBDIR_DEF not defined
|
|
#endif
|
|
|
|
int main ()
|
|
{
|
|
if (generated()*wrapped()*doc() == 3*5*7)
|
|
{
|
|
FILE* fin = fopen(PROJECT_BINARY_DIR "/not_included.h", "r");
|
|
if(fin)
|
|
{
|
|
fclose(fin);
|
|
return 0;
|
|
}
|
|
else
|
|
{
|
|
return -2;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|