mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 15:45:38 +00:00
12 lines
326 B
CMake
12 lines
326 B
CMake
add_executable(lottie2gif "lottie2gif.cpp")
|
|
|
|
target_compile_options(lottie2gif
|
|
PRIVATE
|
|
-std=c++14)
|
|
|
|
target_link_libraries(lottie2gif rlottie)
|
|
|
|
target_include_directories(lottie2gif
|
|
PRIVATE
|
|
"${CMAKE_CURRENT_LIST_DIR}/../inc/")
|