diff --git a/.gitignore b/.gitignore index c948f71..d565317 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ bin/* lib/* . +*.user +*.swp +build/ diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..ba105b9 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,64 @@ +cmake_minimum_required(VERSION 3.1) + +project(g810-led) + +option(USE_LIBUSB "Use libusb instead of hidapi" OFF) + +# +# Generic Compiler Flags +# + +set(CMAKE_CXX_STANDARD 11) #17? +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) +set(CMAKE_CXX_FLAGS_DEBUG "-g -Wextra -pedantic ${CMAKE_CXX_FLAGS_DEBUG}") + +if(USE_LIBUSB) + add_definitions(-Dlibusb) + set(DEP_LIBRARIES "usb-1.0") +else() + add_definitions(-Dhidapi) + set(DEP_LIBRARIES "hidapi-hidraw") +endif() + +# +# version +# + +set(MAJOR 0) +set(MINOR 2) +set(MICRO 7) +add_definitions(-DVERSION="${MAJOR}.${MINOR}.${MICRO}") + +# +# Colored Terminal Output +# + +if(UNIX AND ( + (CMAKE_CXX_COMPILER_ID MATCHES "Clang") + OR (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9)) + AND CMAKE_GENERATOR STREQUAL "Ninja") + # These compilers generate coloured output, but by default only when their output channel is a + # terminal (TTY/PTY). Ninja however captures all output in a pipe (per-subprocess), disabling + # coloured compiler diagnostics. We forcefully enable it because Ninja, since 1.0.0 + # (ninja-build/ninja#198) takes care to strip VT100 CSI control sequences from the output if Ninja + # itself is writing to a pipe instead of a terminal. As a result this should give us the best of + # both worlds: coloured output when we're running in a terminal, plain output for editors, IDEs, + # etc. + set(CMAKE_CXX_FLAGS "-fdiagnostics-color=always ${CMAKE_CXX_FLAGS}" CACHE STRING "" FORCE) +endif() + +# +# lib +# + +set(INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include) +include_directories(${INCLUDE_DIR}) +add_subdirectory(src) + +# +# app +# + +add_subdirectory(app) + diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt new file mode 100644 index 0000000..278522d --- /dev/null +++ b/app/CMakeLists.txt @@ -0,0 +1,20 @@ +set(SOURCES + main.cpp +# utils.h + utils.cpp +# help.h + help.cpp + ) + +if(CMAKE_EXTRA_GENERATOR OR MSVC_IDE) + message(STATUS "Adding header files to project") + file(GLOB_RECURSE HEADERS "${INCLUDE_DIR}/*.h") + if(MSVC_IDE) + source_group("Header Files" FILES ${HEADERS}) + endif() + list(APPEND SOURCES ${HEADERS}) +endif() + +add_executable(g810-led ${SOURCES}) + +target_link_libraries(g810-led PUBLIC libledkeyboard) diff --git a/src/helpers/help.cpp b/app/help.cpp similarity index 100% rename from src/helpers/help.cpp rename to app/help.cpp diff --git a/src/helpers/help.h b/app/help.h similarity index 100% rename from src/helpers/help.h rename to app/help.h diff --git a/src/main.cpp b/app/main.cpp similarity index 99% rename from src/main.cpp rename to app/main.cpp index 467589a..63dfe5f 100644 --- a/src/main.cpp +++ b/app/main.cpp @@ -4,9 +4,9 @@ #include #include -#include "helpers/help.h" -#include "helpers/utils.h" -#include "classes/Keyboard.h" +#include "help.h" +#include "utils.h" +#include "Keyboard.h" int commit(LedKeyboard &kbd) { diff --git a/src/helpers/utils.cpp b/app/utils.cpp similarity index 99% rename from src/helpers/utils.cpp rename to app/utils.cpp index 5398838..005da8b 100644 --- a/src/helpers/utils.cpp +++ b/app/utils.cpp @@ -3,7 +3,7 @@ #include #include -#include "../classes/Keyboard.h" +#include "Keyboard.h" namespace utils { diff --git a/src/helpers/utils.h b/app/utils.h similarity index 95% rename from src/helpers/utils.h rename to app/utils.h index 92de26b..d7fc8d0 100644 --- a/src/helpers/utils.h +++ b/app/utils.h @@ -2,7 +2,7 @@ #define UTILS_HELPER #include -#include "../classes/Keyboard.h" +#include "Keyboard.h" namespace utils { diff --git a/src/classes/Keyboard.h b/include/Keyboard.h similarity index 100% rename from src/classes/Keyboard.h rename to include/Keyboard.h diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..26e4ad2 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,16 @@ +set(SOURCES + Keyboard.cpp + ) + +if(CMAKE_EXTRA_GENERATOR OR MSVC_IDE) + message(STATUS "Adding header files to project") + file(GLOB_RECURSE HEADERS "${INCLUDE_DIR}/*.hpp") + if(MSVC_IDE) + source_group("Header Files" FILES ${HEADERS}) + endif() + list(APPEND SOURCES ${CUKE_HEADERS}) +endif() + +add_library(libledkeyboard STATIC ${SOURCES}) + +target_link_libraries(libledkeyboard PRIVATE ${DEP_LIBRARIES}) diff --git a/src/classes/Keyboard.cpp b/src/Keyboard.cpp similarity index 100% rename from src/classes/Keyboard.cpp rename to src/Keyboard.cpp