mirror of
https://gitlab.com/es-de/emulationstation-de.git
synced 2025-04-02 10:51:45 -04:00
8 lines
163 B
CMake
8 lines
163 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
|
|
project(svg2png CXX)
|
|
|
|
add_executable(svg2png svg2png.cpp)
|
|
target_link_libraries(svg2png lunasvg)
|