Last active
January 2, 2016 02:09
-
-
Save usagi/8235520 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Magick++.h> | |
| int main(){} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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