jsc.pro 819 B

12345678910111213141516171819202122232425262728293031323334
  1. # -------------------------------------------------------------------
  2. # Project file for the jsc binary (interactive interpreter)
  3. #
  4. # See 'Tools/qmake/README' for an overview of the build system
  5. # -------------------------------------------------------------------
  6. TEMPLATE = app
  7. TARGET = jsc
  8. DESTDIR = $${ROOT_BUILD_DIR}/bin
  9. QT -= gui
  10. win32-*: CONFIG += console
  11. win32-msvc*: CONFIG += exceptions_off stl_off
  12. win32-msvc*|win32-icc: INCLUDEPATH += $$ROOT_WEBKIT_DIR/Source/JavaScriptCore/os-win32
  13. WEBKIT += javascriptcore wtf
  14. SOURCES = jsc.cpp
  15. win32-* {
  16. LIBS += -ladvapi32
  17. }
  18. wince* {
  19. LIBS += mmtimer.lib
  20. }
  21. # Prevent warnings about difference in visibility on Mac OS X
  22. contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
  23. unix:contains(QT_CONFIG, reduce_relocations):CONFIG += bsymbolic_functions