metaforce/hecl/lib/CMakeLists.txt

22 lines
578 B
CMake
Raw Normal View History

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()
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-10-10 06:59:40 +00:00
../include/HECL/Backend/Backend.hpp
../include/HECL/Backend/GX.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
${PLAT_SRCS})