build: Don't try to do anything with windows plugin on Unix
This commit is contained in:
parent
bc53109a1f
commit
c56408640f
@ -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 ()
|
Loading…
Reference in New Issue
Block a user