17 lines
265 B
CMake
17 lines
265 B
CMake
add_library(EnOut STATIC
|
|
EnOut.c
|
|
)
|
|
|
|
target_include_directories(EnOut PUBLIC
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
)
|
|
|
|
if(UNIT_TESTING)
|
|
target_link_libraries(EnOut
|
|
MockRegEdit
|
|
)
|
|
else()
|
|
target_link_libraries(EnOut
|
|
RegEdit
|
|
)
|
|
endif()
|