Skip to content

Commit 1cdddba

Browse files
authored
Merge pull request #295 from ferdnyc/fix-include-dirs
Fix include path list, for subdirectories
2 parents cf79afd + 3946eaa commit 1cdddba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/include/OpenShotVersion.h
7474

7575
############### Set up include paths #################
7676
list(APPEND OPENSHOT_INCLUDE_DIRS
77-
include
78-
include/effects
79-
include/Qt
77+
${CMAKE_CURRENT_SOURCE_DIR}/include
78+
${CMAKE_CURRENT_SOURCE_DIR}/include/effects
79+
${CMAKE_CURRENT_SOURCE_DIR}/include/Qt
8080
${CMAKE_CURRENT_BINARY_DIR}/include )
8181

8282
#### Enable C++11 (for std::shared_ptr support)

0 commit comments

Comments
 (0)