diff options
| author | Anton Novoselov <[email protected]> | 2017-08-01 13:20:34 +0300 |
|---|---|---|
| committer | Anton Novoselov <[email protected]> | 2017-08-01 13:20:34 +0300 |
| commit | 883afed713a7b6508c9847a1a3d7670811b43026 (patch) | |
| tree | a58d155fc9422e836d8b33ee39880dc1491f7828 /tools/compiler/cmake/Windows | |
| parent | Blast 1.1 release (windows / linux) (diff) | |
| download | blast-883afed713a7b6508c9847a1a3d7670811b43026.tar.xz blast-883afed713a7b6508c9847a1a3d7670811b43026.zip | |
* fix .gitignore
* added missing cmake files
Diffstat (limited to 'tools/compiler/cmake/Windows')
| -rw-r--r-- | tools/compiler/cmake/Windows/LegacyConverter.cmake | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/compiler/cmake/Windows/LegacyConverter.cmake b/tools/compiler/cmake/Windows/LegacyConverter.cmake new file mode 100644 index 0000000..1a99def --- /dev/null +++ b/tools/compiler/cmake/Windows/LegacyConverter.cmake @@ -0,0 +1,22 @@ +# +# Build LegacyConverter Windows +# + +SET(LEGACYCONVERTER_PLATFORM_COMMON_FILES +) + +SET(LEGACYCONVERTER_PLATFORM_INCLUDES +) + +SET(LEGACYCONVERTER_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}> +) + +#TARGET_LINK_LIBRARIES(NvBlast PUBLIC ${NVTOOLSEXT_LIBRARIES}) +#SET_TARGET_PROPERTIES(NvBlast PROPERTIES LINK_FLAGS "/MAP" ) |