[nostalgia] CMake cleanup

This commit is contained in:
Gary Talent 2023-06-17 20:53:08 -05:00
parent 76a8499630
commit bb694b9b13
3 changed files with 6 additions and 12 deletions

View File

@ -4,11 +4,6 @@ add_library(
typeconv.cpp typeconv.cpp
) )
target_include_directories(
NostalgiaCore-Keel PUBLIC
../include
)
target_link_libraries( target_link_libraries(
NostalgiaCore-Keel PUBLIC NostalgiaCore-Keel PUBLIC
Keel Keel

View File

@ -27,8 +27,6 @@ target_link_libraries(
lodepng lodepng
) )
#target_compile_definitions(NostalgiaCore-Studio PRIVATE QT_QML_DEBUG)
install( install(
TARGETS TARGETS
NostalgiaCore-Studio-ImGui NostalgiaCore-Studio-ImGui

View File

@ -4,13 +4,14 @@ add_library(
typeconv.cpp typeconv.cpp
) )
target_include_directories(
NostalgiaScene-Keel PUBLIC
../include
)
target_link_libraries( target_link_libraries(
NostalgiaScene-Keel PUBLIC NostalgiaScene-Keel PUBLIC
Keel Keel
NostalgiaScene NostalgiaScene
) )
install(
TARGETS
NostalgiaScene-Keel
LIBRARY DESTINATION
${NOSTALGIA_DIST_MODULE}
)