Skip to content

Instantly share code, notes, and snippets.

@usagi
Last active January 2, 2016 02:09
Show Gist options
  • Select an option

  • Save usagi/8235520 to your computer and use it in GitHub Desktop.

Select an option

Save usagi/8235520 to your computer and use it in GitHub Desktop.
#include <Magick++.h>
int main(){}
cmake_minimum_required(VERSION 2.8.10)
project(app)
find_package(ImageMagick REQUIRED COMPONENTS Magick++)
include_directories(${ImageMagick_INCLUDE_DIRS})
add_executable(app app.cxx)
target_link_libraries(app ${ImageMagick_LIBRARIES})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment