diff --git a/CMakeLists.txt b/CMakeLists.txt index d7265f9..f3d20ce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -131,7 +131,7 @@ if(BUILD_SHARED) install(TARGETS dmdutil_shared LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/lib ) - install(FILES src/DMDUtil.h DESTINATION ${CMAKE_INSTALL_PREFIX}/include) + install(DIRECTORY include/DMDUtil DESTINATION ${CMAKE_INSTALL_PREFIX}/include) if(PLATFORM STREQUAL "win" OR PLATFORM STREQUAL "macos" OR PLATFORM STREQUAL "linux") add_executable(dmdutil_test @@ -194,7 +194,7 @@ if(BUILD_STATIC) install(TARGETS dmdutil_static LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/lib ) - install(FILES src/DMDUtil.h DESTINATION ${CMAKE_INSTALL_PREFIX}/include) + install(DIRECTORY include/DMDUtil DESTINATION ${CMAKE_INSTALL_PREFIX}/include) if(PLATFORM STREQUAL "win" OR PLATFORM STREQUAL "macos" OR PLATFORM STREQUAL "linux") add_executable(dmdutil_test_s diff --git a/include/DMDUtil/DMD.h b/include/DMDUtil/DMD.h index b18ce21..7f50ce5 100644 --- a/include/DMDUtil/DMD.h +++ b/include/DMDUtil/DMD.h @@ -24,7 +24,7 @@ class ZeDMD; namespace DMDUtil { enum class AlphaNumericLayout { - None, + NoLayout, __2x16Alpha, __2x20Alpha, __2x7Alpha_2x7Num, @@ -126,4 +126,4 @@ class DMDUTILAPI DMD static bool m_finding; }; -} \ No newline at end of file +}