forked from zeromq/ingescape
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring windows 0.8.0 cf email for modifications
- Loading branch information
1 parent
d4e65bc
commit 227dbb5
Showing
216 changed files
with
116 additions
and
701 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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
|
||
#Mastic.h | ||
header_source_path = $$shell_path($$clean_path($$absolute_path($$PWD/../../../../src/include/mastic.h))) | ||
header_dest_path = $$shell_path($$clean_path("C:/mastic/include/*")) | ||
|
||
#Create a command, using the 'cmd' command line and Window's 'xcopy' | ||
copyHeaders.commands = $$quote(cmd /c xcopy /S /Y /I $${header_source_path} $${header_dest_path}) | ||
|
||
#dll | ||
win32:{ | ||
dependencies_src_path = $$shell_path($$clean_path($$absolute_path( $${libs_path}/*))) | ||
mastic_dependencies_src_path = $$shell_path($$clean_path($$absolute_path( $$DESTDIR/mastic.*))) | ||
|
||
CONFIG(debug, debug|release){ | ||
dependencies_dest_path = $$shell_path($$clean_path("C:/mastic/libs/debug/*")) | ||
}else { | ||
dependencies_dest_path = $$shell_path($$clean_path("C:/mastic/libs/release/*")) | ||
} | ||
} | ||
|
||
copyDependencies.commands = $$quote(cmd /c xcopy /S /Y /I $${dependencies_src_path} $${dependencies_dest_path}) | ||
copyMasticDLL.commands = $$quote( cmd /c xcopy /S /Y /I $${mastic_dependencies_src_path} $${dependencies_dest_path} ) | ||
|
||
#Add the command to Qt. | ||
QMAKE_EXTRA_TARGETS += copyHeaders \ | ||
copyDependencies \ | ||
copyMasticDLL \ | ||
|
||
POST_TARGETDEPS += copyHeaders \ | ||
copyDependencies \ | ||
copyMasticDLL \ |
Oops, something went wrong.