Skip to content

Commit

Permalink
Include the headers too in the build
Browse files Browse the repository at this point in the history
- Again, preparing the use in a submodule
  • Loading branch information
visuve committed Apr 14, 2024
1 parent e9ed6ea commit 3923b68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PystykorvaCLI/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
file(GLOB SourceFiles "*.cpp")
file(GLOB SourceFiles "*.?pp")

if(CMAKE_SYSTEM_NAME MATCHES "Windows")
set(ExecutableName "Pystykorva")
Expand Down
2 changes: 1 addition & 1 deletion PystykorvaLib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ endif()
# apt install libicu-dev / dnf install icu
find_package(ICU COMPONENTS i18n uc REQUIRED)

file(GLOB SourceFiles "*.cpp")
file(GLOB SourceFiles "*.?pp")

if(CMAKE_SYSTEM_NAME MATCHES "Windows")
set(LibraryName "LibPystykorva")
Expand Down
4 changes: 2 additions & 2 deletions PystykorvaTests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
if(CMAKE_SYSTEM_NAME MATCHES "Windows")
file(GLOB SourceFiles "*.cpp" "Win32/*.cpp")
file(GLOB SourceFiles "*.?pp" "Win32/*.?pp")
set(ExecutableName "PystykorvaTests")
set(LibraryName "LibPystykorva")
else()
file(GLOB SourceFiles "*.cpp")
file(GLOB SourceFiles "*.?pp")
set(ExecutableName "pystykorva_tests")
set(LibraryName "libpystykorva")
endif()
Expand Down

0 comments on commit 3923b68

Please sign in to comment.