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"