metaforce/hecl/hecl.pro

27 lines
524 B
Prolog
Raw Normal View History

2015-05-15 22:39:43 +00:00
TEMPLATE = subdirs
# Enable building with LLVM dependencies
exists ($$PWD/llvm) {
LLVMROOT = $$PWD/llvm
}
!isEmpty(LLVMROOT) {
message("Configuring for LLVM backends using '$$LLVMROOT'")
DEFINES += HECL_LLVM=1
}
HEADERS += \
include/HECLBackend.hpp \
include/HECLDatabase.hpp \
include/HECLFrontend.hpp \
include/HECLRuntime.hpp
SUBDIRS += \
2015-05-17 04:55:29 +00:00
extern/sqlite3 \
2015-05-18 23:37:10 +00:00
extern/blowfish \
2015-05-15 22:39:43 +00:00
lib \
driver
2015-05-18 23:37:10 +00:00
driver.depends = extern/sqlite3
driver.depends = extern/blowfish
2015-05-15 22:39:43 +00:00
driver.depends = lib