Skip to content
This repository was archived by the owner on Nov 27, 2025. It is now read-only.

Commit f8979db

Browse files
authored
fix: target wasn't being created yet
1 parent 07732a0 commit f8979db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ message(" finding where Skia shared library is")
1717
include(FindSkiaSystem)
1818
message(" set SKIA_LIBRARIES to ${SKIA_LIBRARIES}")
1919

20-
# tell target where to find .dlls
21-
target_link_directories(lib${CMAKE_PROJECT_NAME} PRIVATE ${CMAKE_BINARY_DIR}/src)
22-
2320
set(LIBRARY_DEPENDENCIES
2421
${APP_DEPENDENCIES}
2522
${SKIA_LIBRARIES}
@@ -31,3 +28,6 @@ set(MODULE_LINK ${LIBRARY_DEPENDENCIES})
3128
set(MODULE_CUSTOM_DIRECTORIES ${CMAKE_BINARY_DIR}/src)
3229

3330
finish_module()
31+
32+
# tell target where to find .dlls
33+
target_link_directories(lib${CMAKE_PROJECT_NAME} PRIVATE ${CMAKE_BINARY_DIR}/src)

0 commit comments

Comments
 (0)