mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-01-30 23:48:44 +03:00
13 lines
190 B
CMake
13 lines
190 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
project(HintsToPot)
|
|
|
|
add_executable(hintsToPot
|
|
HintsToPot.cpp)
|
|
|
|
target_link_libraries(hintsToPot PRIVATE boost_libs)
|
|
|
|
#encoding_check(HintsToPot)
|
|
|
|
|
|
|