mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2024-11-24 08:45:37 +01:00
Added files for core library.
This commit is contained in:
parent
5bebdc3b07
commit
39d7f2c942
15
Core/CMakeLists.txt
Normal file
15
Core/CMakeLists.txt
Normal 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
4
Core/include/TexComp.h
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#ifndef _TEX_COMP_H_
|
||||||
|
#define _TEX_COMP_H_
|
||||||
|
|
||||||
|
#endif //_TEX_COMP_H_
|
1
Core/src/TexComp.cpp
Normal file
1
Core/src/TexComp.cpp
Normal file
@ -0,0 +1 @@
|
|||||||
|
#include "TexComp.h"
|
Loading…
Reference in New Issue
Block a user