From 39d7f2c9428907417907bfd88f661a0518ea174e Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Mon, 27 Aug 2012 13:36:59 -0400 Subject: [PATCH] Added files for core library. --- Core/CMakeLists.txt | 15 +++++++++++++++ Core/include/TexComp.h | 4 ++++ Core/src/TexComp.cpp | 1 + 3 files changed, 20 insertions(+) create mode 100644 Core/CMakeLists.txt create mode 100644 Core/include/TexComp.h create mode 100644 Core/src/TexComp.cpp diff --git a/Core/CMakeLists.txt b/Core/CMakeLists.txt new file mode 100644 index 0000000..f8a9de6 --- /dev/null +++ b/Core/CMakeLists.txt @@ -0,0 +1,15 @@ + +SET( SOURCES + "src/TexComp.cpp" +) + +SET( HEADERS + "include/TexComp.h" +) + +INCLUDE_DIRECTORIES( ${TexC_SOURCE_DIR}/Core/include ) + +ADD_LIBRARY( TexCompCore + ${HEADERS} + ${SOURCES} +) diff --git a/Core/include/TexComp.h b/Core/include/TexComp.h new file mode 100644 index 0000000..64d37b2 --- /dev/null +++ b/Core/include/TexComp.h @@ -0,0 +1,4 @@ +#ifndef _TEX_COMP_H_ +#define _TEX_COMP_H_ + +#endif //_TEX_COMP_H_ diff --git a/Core/src/TexComp.cpp b/Core/src/TexComp.cpp new file mode 100644 index 0000000..5aa2a27 --- /dev/null +++ b/Core/src/TexComp.cpp @@ -0,0 +1 @@ +#include "TexComp.h"