You've already forked com.unity.ide.cursor
mirror of
https://github.com/boxqkrtm/com.unity.ide.cursor.git
synced 2026-05-18 16:50:11 +00:00
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)
|