Skip to content

Commit

Permalink
Merge pull request #11 from nakira974/branches/dev
Browse files Browse the repository at this point in the history
Fixed PROJECT_NAME macro in CMakeLists.txt
  • Loading branch information
nakira974 authored Feb 26, 2024
2 parents 91d3157 + 52cc274 commit abadd2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,5 @@ endif ()

include_directories(${PROJECT_SOURCE_DIR}/headers)

add_library(${CMAKE_PROJECT_NAME} SHARED ${SOURCES_FILES} ${HEADERS_FILES})
target_include_directories(${CMAKE_PROJECT_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/headers)
add_library(${PROJECT_NAME} SHARED ${SOURCES_FILES} ${HEADERS_FILES})
target_include_directories(${PROJECT_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/headers)

0 comments on commit abadd2d

Please sign in to comment.