Files
PyG2O/windows-x86.cmake
2022-06-13 16:53:01 +02:00

10 lines
302 B
CMake

# Simple toolchain file for compiling under windows
# Usage: cmake .. -DCMAKE_TOOLCHAIN_FILE=windows-x86.cmake
# specify the target system properties
set(CMAKE_SYSTEM_NAME Windows)
set(CMAKE_GENERATOR_PLATFORM Win32 CACHE INTERNAL "")
# specify shared library suffix
set(SHARED_LIBRARY_SUFFIX "x86")