Added files for core library.

This commit is contained in:
Pavel Krajcevski 2012-08-27 13:36:59 -04:00
parent 5bebdc3b07
commit 39d7f2c942
3 changed files with 20 additions and 0 deletions

15
Core/CMakeLists.txt Normal file
View File

@ -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}
)

4
Core/include/TexComp.h Normal file
View File

@ -0,0 +1,4 @@
#ifndef _TEX_COMP_H_
#define _TEX_COMP_H_
#endif //_TEX_COMP_H_

1
Core/src/TexComp.cpp Normal file
View File

@ -0,0 +1 @@
#include "TexComp.h"