-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#issue-27] add a dedicated conf file, and use absolute paths from so…
…urce and build dir
- Loading branch information
Showing
10 changed files
with
51 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
RC_ROOT_SOURCE_DIR = $$PWD | ||
RC_ROOT_BUILD_DIR = $$shadowed($$PWD) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<html> | ||
<head> | ||
<title> Realtime Graphs </title> | ||
<script type="text/javascript" src="qrc:/web/web/lib/jquery.js"></script> | ||
<script type="text/javascript" src="qrc:/web/web/lib/highchart.js"></script> | ||
<script type="text/javascript" src="qrc:/web/web/lib/underscore.js"></script> | ||
<script type="text/javascript" src="qrc:/web/web/src/objectcount.js"></script> | ||
<script type="text/javascript" src="qrc:/web/lib/jquery.js"></script> | ||
<script type="text/javascript" src="qrc:/web/lib/highchart.js"></script> | ||
<script type="text/javascript" src="qrc:/web/lib/underscore.js"></script> | ||
<script type="text/javascript" src="qrc:/web/src/objectcount.js"></script> | ||
</head> | ||
<body> | ||
<div id="container" style="width:100%; height:400px;"></div> | ||
<script type="text/javascript" src="qrc:/web/web/src/chart.js"></script> | ||
<script type="text/javascript" src="qrc:/web/src/chart.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# http://danny-pope.com/?p=86 | ||
|
||
COFFEESCRIPT_FILES += $$PWD/src/*.coffee | ||
|
||
# Define the compiler. The actual compilation is done in the 'commands' section. | ||
CoffeeMaker.input = COFFEESCRIPT_FILES | ||
CoffeeMaker.targetdir = $$PWD/src | ||
CoffeeMaker.output = $$CoffeeScriptCompiler.targetdir\${QMAKE_FILE_IN_BASE}${QMAKE_FILE_EXT} | ||
CoffeeMaker.commands = coffee --bare --compile --output $$PWD/src $$PWD/src | ||
CoffeeMaker.CONFIG += no_link_no_clean | ||
CoffeeMaker.variable_out = PRE_TARGETDEPS | ||
|
||
# Add the compiler to the list of 'extra compilers'. | ||
QMAKE_EXTRA_COMPILERS += CoffeeMaker | ||
|
||
RESOURCES += $$PWD/web.qrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<RCC> | ||
<qresource prefix="/web"> | ||
<file>src/chart.js</file> | ||
<file>lib/highchart.js</file> | ||
<file>index.html</file> | ||
<file>lib/jquery.js</file> | ||
<file>src/chart.coffee</file> | ||
<file>lib/underscore.js</file> | ||
<file>src/objectcount.coffee</file> | ||
<file>src/objectcount.js</file> | ||
</qresource> | ||
</RCC> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters