Make CInterface exported functions be contained in .h files, instead of .cpp.

This commit is contained in:
Deukhoofd 2020-09-25 12:00:44 +02:00
parent 178a38db07
commit 9abdbecd17
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
3 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ if (NOT WINDOWS)
endif()
# Grab all cpp and hpp files in our source directories.
file(GLOB_RECURSE SRC_FILES "src/*.cpp" "src/*.hpp" "CInterface/*.cpp" "CInterface/*.hpp")
file(GLOB_RECURSE SRC_FILES "src/*.cpp" "src/*.hpp" "CInterface/*.cpp" "CInterface/*.hpp" "CInterface/*.h")
add_library(Arbutils ${LIBTYPE} ${SRC_FILES})
target_precompile_headers(Arbutils PUBLIC src/Precompiled.hxx)