You've already forked com.unity.ide.cursor
mirror of
https://github.com/boxqkrtm/com.unity.ide.cursor.git
synced 2026-05-14 22:30:10 +00:00
## [2.0.14] - 2022-01-14 Integration: - Remove package version checking. ## [2.0.13] - 2022-01-12 Integration: - Fixed wrong path to analyzers in generated projects when using external packages. - Fixed selective project generation not creating Analyzer/LangVersion nodes. - Fixed asmdef references with Player projects. Documentation: - Added new documentation including ToC, overview, how to use and images.
15 lines
426 B
CMake
15 lines
426 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
|
|
project(com)
|
|
set(SOURCES
|
|
COMIntegration.cpp
|
|
BStrHolder.h
|
|
ComPtr.h
|
|
dte80a.tlh
|
|
)
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -Wall")
|
|
add_executable(COMIntegration ${SOURCES})
|
|
set_property(TARGET COMIntegration PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreaded")
|
|
target_link_libraries(COMIntegration Shlwapi.lib)
|