-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #200 from PauloCarvalhoRJ/FK_with_ThirdPartyLib
Factorial Kriging
- Loading branch information
Showing
103 changed files
with
3,510 additions
and
572 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#This is the configuration that must be shared amongst the .pro files | ||
#used to build the different binaries (executables, libraries, ...) | ||
|
||
CONFIG( release, debug|release ) { | ||
DESTDIR = ../GammaRay_release/dist | ||
OBJECTS_DIR = ../GammaRay_release/obj | ||
MOC_DIR = ../GammaRay_release/moc | ||
RCC_DIR = ../GammaRay_release/rcc | ||
UI_DIR = ../GammaRay_release/ui | ||
} else { | ||
DESTDIR = ../GammaRay_debug/dist | ||
OBJECTS_DIR = ../GammaRay_debug/obj | ||
MOC_DIR = ../GammaRay_debug/moc | ||
RCC_DIR = ../GammaRay_debug/rcc | ||
UI_DIR = ../GammaRay_debug/ui | ||
} | ||
CONFIG += c++11 |
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 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 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,5 @@ | ||
#if defined IS_COMPILING_CALCSCRIPT_LIB | ||
#define CALCSCRIPT_LIB_COMMON_DLLSPEC Q_DECL_EXPORT | ||
#else | ||
#define CALCSCRIPT_LIB_COMMON_DLLSPEC Q_DECL_IMPORT | ||
#endif |
Oops, something went wrong.