1
0
mirror of synced 2024-11-13 18:50:53 +01:00

build: Don't try to do anything with windows plugin on Unix

This commit is contained in:
WerWolv 2021-12-17 09:56:46 +01:00
parent bc53109a1f
commit c56408640f

View File

@ -5,6 +5,7 @@ project(windows)
# Add your source files here #
if (WIN32)
add_library(${PROJECT_NAME} SHARED
source/plugin_windows.cpp
@ -21,8 +22,6 @@ if (WIN32)
target_include_directories(${PROJECT_NAME} PRIVATE include)
# Add additional libraries here #
target_link_libraries(${PROJECT_NAME} PRIVATE libimhex)
endif ()
# ---- No need to change anything from here downwards unless you know what you're doing ---- #
@ -41,3 +40,5 @@ set_target_properties(${PROJECT_NAME} PROPERTIES POSITION_INDEPENDENT_CODE ON)
if (NOT TARGET libimhex)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../libimhex ${CMAKE_CURRENT_BINARY_DIR}/plugins/libimhex)
endif()
endif ()