Skip to content

Commit

Permalink
refractor
Browse files Browse the repository at this point in the history
  • Loading branch information
gywn committed Nov 14, 2017
1 parent af1de42 commit 4211b58
Show file tree
Hide file tree
Showing 8 changed files with 848 additions and 856 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
*.dylib
*.o
*.dSYM
testCIEDE2000

build/
.vscode/
174 changes: 0 additions & 174 deletions CIEDE2000.cpp

This file was deleted.

117 changes: 0 additions & 117 deletions CIEDE2000.h

This file was deleted.

13 changes: 13 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
cmake_minimum_required (VERSION 3.1)

project(color)

# Compiler-specific C++11 activation.
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

add_library(CIEDE2000 SHARED src/CIEDE2000.cpp)
target_include_directories(CIEDE2000 PUBLIC include)

add_executable(testCIEDE2000 test/testCIEDE2000.cpp)
target_link_libraries(testCIEDE2000 CIEDE2000)
Loading

0 comments on commit 4211b58

Please sign in to comment.