SAPIServer/speech2/CMakeLists.txt
modeco80 9a9d0043f2 setup scaffold for cmake build
don't care for make and it makes importing other third party code harder
2024-07-19 19:34:25 -04:00

14 lines
253 B
CMake

cmake_minimum_required(VERSION 3.15)
project(testprog)
xp_init()
add_executable(testprog
testprog.cpp
)
# use the static multithreaded C library
set_property(TARGET testprog PROPERTY
MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")