mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-24 07:03:59 -06:00
12 lines
190 B
CMake
12 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)
|
|
|
|
|
|
|