You've already forked com.unity.ide.cursor
mirror of
https://github.com/boxqkrtm/com.unity.ide.cursor.git
synced 2026-05-15 23:10:06 +00:00
## [2.0.8] - 2021-04-09 Project generation: Improved generation performance (especially with DOTS enabled projects). Improved stability. Updated Analyzers lookup strategy. Fixed .vsconfig file not generated when using "regenerate all". Integration Improved automation plugins. Documentation Open sourced automation plugins.
14 lines
344 B
CMake
14 lines
344 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
|
|
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})
|
|
target_link_libraries(COMIntegration Shlwapi.lib)
|