From ef041d3b1e10450673fc2edc4cc9e5f2ed53cfd9 Mon Sep 17 00:00:00 2001 From: Deathsbreed Date: Sun, 19 Oct 2014 10:43:24 -0500 Subject: [PATCH] Adding instructions to libs and include directories. --- .gitignore | 7 ++++--- include/readme.txt | 1 + libs/readme.txt | 1 + 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 include/readme.txt create mode 100644 libs/readme.txt diff --git a/.gitignore b/.gitignore index 10b627d..b6967af 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ # Ignore binary files -bin/* +bin/ # Ignore CMake files CMakeCache.txt @@ -8,5 +8,6 @@ cmake_install.cmake Makefile # Ignore library and include files -libs/* -include/* +libs/*.so +libs/*.dll +include/irrlicht/* diff --git a/include/readme.txt b/include/readme.txt new file mode 100644 index 0000000..bf77890 --- /dev/null +++ b/include/readme.txt @@ -0,0 +1 @@ +This directory should contain your local include header files. diff --git a/libs/readme.txt b/libs/readme.txt new file mode 100644 index 0000000..43bbe31 --- /dev/null +++ b/libs/readme.txt @@ -0,0 +1 @@ +This directory should include your library files. If you're running windows it should be "libIrrlicht.dll", if you're running Linux it should be "libIrrlicht.so".