We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 015a850 commit 4180b24Copy full SHA for 4180b24
src/filter/CMakeLists.txt
@@ -75,6 +75,7 @@ add_subdirectory (nosync0r)
75
add_subdirectory (ntsc)
76
add_subdirectory (perspective)
77
add_subdirectory (pixeliz0r)
78
+add_subdirectory (pixels0rt)
79
add_subdirectory (pixs0r)
80
add_subdirectory (posterize)
81
add_subdirectory (premultiply)
src/filter/pixels0rt/CMakeLists.txt
@@ -0,0 +1,11 @@
1
+set (SOURCES pixels0rt.c)
2
+set (TARGET pixels0rt)
3
+
4
+if (MSVC)
5
+ set (SOURCES ${SOURCES} ${FREI0R_DEF})
6
+endif (MSVC)
7
8
+add_library (${TARGET} MODULE ${SOURCES})
9
+set_target_properties (${TARGET} PROPERTIES PREFIX "")
10
11
+install (TARGETS ${TARGET} LIBRARY DESTINATION ${LIBDIR})
0 commit comments