Revision 93b705a396c23f771ba203efb6f2f4934ae027b7 authored by Brad King on 05 August 2016, 12:50:29 UTC, committed by CMake Topic Stage on 05 August 2016, 12:50:29 UTC
e555480c Ninja: Fix response file format for GNU-like Clang on Windows

2 parent s baa6032 + e555480
Raw File
testConly.c
#include "testConly.h"
#include <stdio.h>

int CsharedFunction()
{
#ifndef TEST_C_FLAGS
  printf("TEST_C_FLAGS failed\n");
  return 0;
#else
  printf("Passed: TEST_C_FLAGS passed\n");
#endif
  return 1;
}
back to top