use glfw3 target export feature
This commit is contained in:
parent
2508fb39ee
commit
7ffef5851d
|
@ -8,9 +8,6 @@ project ("NES Emulator")
|
|||
find_package(glfw3)
|
||||
if(NOT ${GLFW3_FOUND})
|
||||
add_subdirectory("vendor/glfw")
|
||||
|
||||
set(GLFW3_INCLUDE_DIRS glfw)
|
||||
set(GLFW3_LIBRARIES glfw)
|
||||
endif()
|
||||
add_subdirectory("vendor/glad")
|
||||
add_subdirectory("vendor/spdlog")
|
||||
|
|
|
@ -20,9 +20,6 @@ target_include_directories(nesemu PRIVATE
|
|||
gfx
|
||||
debugger
|
||||
${IMGUI_INCLUDE}
|
||||
${GLFW3_INCLUDE_DIRS}
|
||||
spdlog
|
||||
glad
|
||||
)
|
||||
|
||||
target_sources(nesemu PRIVATE
|
||||
|
@ -31,7 +28,7 @@ target_sources(nesemu PRIVATE
|
|||
|
||||
target_link_libraries(nesemu
|
||||
spdlog
|
||||
${GLFW3_LIBRARIES}
|
||||
glfw
|
||||
glad
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue