1,44" SPI lcd library error

Hello i bought a 1.44" color lcd from ebay LCD and i got the sketch from Here and the lbrary from Here I'm using my uno board for test and i get a slight error

Arduino: 1.7.6 Board: "Arduino Uno"

minimal.ino:3:26: fatal error: TFT_ILI9163C.h: No such file or directory

compilation terminated.

Error compiling.

This report would have more information with
"Show verbose output during compilation"
enabled in File > Preferences.

But in the sketch folder there is a TFT_ILI9163C.h file can someone please help me out the sketch is below.

#include <SPI.h>
#include <Adafruit_GFX.h>
#include <TFT_ILI9163C.h>

// Color definitions
#define	BLACK   0x0000
#define	BLUE    0x001F
#define	RED     0xF800
#define	GREEN   0x07E0
#define CYAN    0x07FF
#define MAGENTA 0xF81F
#define YELLOW  0xFFE0  
#define WHITE   0xFFFF

/*
Teensy3.x and Arduino's
You are using 4 wire SPI here, so:
 MOSI:  11//Teensy3.x/Arduino UNO (for MEGA/DUE refere to arduino site)
 MISO:  12//Teensy3.x/Arduino UNO (for MEGA/DUE refere to arduino site)
 SCK:   13//Teensy3.x/Arduino UNO (for MEGA/DUE refere to arduino site)
 the rest of pin below:
 */
#define __CS 10
#define __DC 9



TFT_ILI9163C tft = TFT_ILI9163C(__CS, 8, __DC);

void setup() {
	tft.begin();
}

void loop(void) {
}

Hello i actually figure it out. i had to put both in the same folder under library. The other problem I'm having is that i try to upload the example sketch clock from the TFT_ILI9163C folder and nothing happen. i still get a white blank screen can someone please help me out i think i wired it correctly.

vcc GND CS RESET A0 SDA SCK LED
3.3v GND 10, 9, 8, 11, 13, 3.3v

i found it from a guy from youtube but i can't find his page anyplace. If i hold the reset button for a bref second i can see the clock on the lcd

Hello can someone please help me?

I follow all steps from the i think correctly and i only see a white screen. However if i hold the reset down i see the clock for a split second then it goes away back to white screen not sure what is wrong.