Skip to content
This repository was archived by the owner on Nov 20, 2020. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixed syntax error
  • Loading branch information
U-REALD\hflynn committed Jun 30, 2015
commit d8f214d61d81b9f5ca0056adba576e108da4182b
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ set ( SRC jmemnobs.c jaricom.c jcapimin.c jcapistd.c jcarith.c jccoefct.c jccolo

if ( WIN32 )
add_library ( jpeg STATIC ${SRC} ${HEADERS} )
else
else ( WIN32 )
add_library ( jpeg ${SRC} ${HEADERS} )
endif ( )
endif ( WIN32 )

add_executable ( cjpeg cdjpeg.c cjpeg.c rdbmp.c rdgif.c rdppm.c rdrle.c rdtarga.c
rdswitch.c )
Expand Down