diff options
Diffstat (limited to 'tools/compiler/cmake/Windows/AuthoringTool.cmake')
| -rwxr-xr-x[-rw-r--r--] | tools/compiler/cmake/Windows/AuthoringTool.cmake | 42 |
1 files changed, 22 insertions, 20 deletions
diff --git a/tools/compiler/cmake/Windows/AuthoringTool.cmake b/tools/compiler/cmake/Windows/AuthoringTool.cmake index 3dfc954..d41b6e9 100644..100755 --- a/tools/compiler/cmake/Windows/AuthoringTool.cmake +++ b/tools/compiler/cmake/Windows/AuthoringTool.cmake @@ -1,20 +1,22 @@ -# -# Build AuthoringTool Windows -# - -SET(AUTHORTINGTOOL_PLATFORM_COMMON_FILES -) - -SET(AUTHORTINGTOOL_PLATFORM_INCLUDES -) - -SET(AUTHORTINGTOOL_COMPILE_DEFS - # Common to all configurations - ${BLASTTOOLS_SLN_COMPILE_DEFS};_CONSOLE - - $<$<CONFIG:debug>:${BLASTTOOLS_SLN_DEBUG_COMPILE_DEFS}> - $<$<CONFIG:checked>:${BLASTTOOLS_SLN_CHECKED_COMPILE_DEFS}> - $<$<CONFIG:profile>:${BLASTTOOLS_SLN_PROFILE_COMPILE_DEFS}> - $<$<CONFIG:release>:${BLASTTOOLS_SLN_RELEASE_COMPILE_DEFS}> -) - +#
+# Build AuthoringTool Windows
+#
+
+SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4244")
+
+SET(AUTHORTINGTOOL_PLATFORM_COMMON_FILES
+)
+
+SET(AUTHORTINGTOOL_PLATFORM_INCLUDES
+)
+
+SET(AUTHORTINGTOOL_COMPILE_DEFS
+ # Common to all configurations
+ ${BLASTTOOLS_SLN_COMPILE_DEFS};_CONSOLE
+
+ $<$<CONFIG:debug>:${BLASTTOOLS_SLN_DEBUG_COMPILE_DEFS}>
+ $<$<CONFIG:checked>:${BLASTTOOLS_SLN_CHECKED_COMPILE_DEFS}>
+ $<$<CONFIG:profile>:${BLASTTOOLS_SLN_PROFILE_COMPILE_DEFS}>
+ $<$<CONFIG:release>:${BLASTTOOLS_SLN_RELEASE_COMPILE_DEFS}>
+)
+
|