2015-07-13 06:30:20 +00:00
|
|
|
add_subdirectory(Backend)
|
|
|
|
add_subdirectory(Database)
|
|
|
|
add_subdirectory(Frontend)
|
|
|
|
add_subdirectory(Runtime)
|
2015-07-07 03:24:09 +00:00
|
|
|
|
2015-07-22 19:14:50 +00:00
|
|
|
if(WIN32)
|
2015-08-31 03:36:24 +00:00
|
|
|
list(APPEND PLAT_SRCS winsupport.cpp ../include/HECL/winsupport.hpp)
|
2015-07-22 19:14:50 +00:00
|
|
|
endif()
|
|
|
|
|
2015-11-14 02:26:06 +00:00
|
|
|
atdna(atdna_HMDLMeta.cpp ../include/HECL/HMDLMeta.hpp)
|
2015-11-10 02:06:27 +00:00
|
|
|
atdna(atdna_Frontend.cpp ../include/HECL/Frontend.hpp)
|
2015-11-13 02:12:09 +00:00
|
|
|
atdna(atdna_Runtime.cpp ../include/HECL/Runtime.hpp)
|
2015-11-10 02:06:27 +00:00
|
|
|
|
2015-07-22 19:14:50 +00:00
|
|
|
add_library(HECLCommon
|
2015-07-07 03:24:09 +00:00
|
|
|
HECL.cpp
|
|
|
|
ProjectPath.cpp
|
2015-07-13 06:30:20 +00:00
|
|
|
WideStringConvert.cpp
|
|
|
|
../include/HECL/HECL.hpp
|
2015-11-14 02:26:06 +00:00
|
|
|
../include/HECL/HMDLMeta.hpp
|
2015-10-10 06:59:40 +00:00
|
|
|
../include/HECL/Backend/Backend.hpp
|
|
|
|
../include/HECL/Backend/GX.hpp
|
2015-11-10 23:17:53 +00:00
|
|
|
../include/HECL/Backend/ProgrammableCommon.hpp
|
2015-11-10 02:06:27 +00:00
|
|
|
../include/HECL/Backend/GLSL.hpp
|
2015-07-13 06:30:20 +00:00
|
|
|
../include/HECL/Frontend.hpp
|
|
|
|
../include/HECL/Database.hpp
|
2015-07-22 19:14:50 +00:00
|
|
|
../include/HECL/Runtime.hpp
|
2015-11-14 02:26:06 +00:00
|
|
|
atdna_HMDLMeta.cpp
|
2015-11-10 02:06:27 +00:00
|
|
|
atdna_Frontend.cpp
|
2015-11-13 02:12:09 +00:00
|
|
|
atdna_Runtime.cpp
|
2015-07-22 19:14:50 +00:00
|
|
|
${PLAT_SRCS})
|
2015-07-07 04:45:29 +00:00
|
|
|
|