Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #-------------------------------------------------
  2. #
  3. # Project created BY QtCreator 2010-11-20T00:13:14
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT       += core
  8.  
  9. QT       -= gui
  10.  
  11. TARGET = COMPILER
  12. CONFIG   += console
  13. CONFIG   -= app_bundle
  14.  
  15. DESTDIR = $$PWD
  16.  
  17. TEMPLATE = app
  18.  
  19. INCLUDEPATH += /usr/lib/llvm-2.8/include/
  20.  
  21. SOURCES += main.cpp \
  22.     parser.cpp \
  23.     oberon0.cpp \
  24.     codegen.cpp
  25.  
  26. LIBS += -lfl `llvm-config --libs core jit native`
  27. QMAKE_LFLAGS += `llvm-config --cxxflags --ldflags core jit native`
  28.  
  29. HEADERS += \
  30.     node.h \
  31.     codegen.h
  32.  
  33. OTHER_FILES += \
  34.     parser.y \
  35.     oberon0.l \
  36.     test.txt
  37.  
  38. QMAKE_CLEAN +=  $$PWD/parser.cpp\
  39.                 $$PWD/parser.hpp\
  40.                 $$PWD/oberon0.cpp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement