Files
PyG2O/windows-x64.cmake

13 lines
356 B
CMake

# Simple toolchain file for compiling under windows
# Usage: cmake .. -DCMAKE_TOOLCHAIN_FILE=windows-x64.cmake
# specify the target system properties
set(CMAKE_SYSTEM_NAME Windows)
if (CMAKE_GENERATOR MATCHES "Visual Studio*")
set(CMAKE_GENERATOR_PLATFORM x64 CACHE INTERNAL "")
endif()
# specify shared library suffix
set(SHARED_LIBRARY_SUFFIX "x64")