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
B.cpp

#include <jni.h>
#include <stdio.h>

#include "B.h"

JNIEXPORT void JNICALL Java_B_printName(JNIEnv*, jobject)
{
  printf("B\n");
}
back to top