diff options
author | Zezula Ladislav <ladislav.zezula@avast.com> | 2017-03-09 13:12:34 +0100 |
---|---|---|
committer | Zezula Ladislav <ladislav.zezula@avast.com> | 2017-03-09 13:12:34 +0100 |
commit | 69c5b0682b6355e4ee6405b41ffa30330ebfa046 (patch) | |
tree | c6571b89f056b4aa39aa863e1ade9953b1db3d5e /CMakeLists.txt | |
parent | ee273364aa401f642953669035eb623bbefdf497 (diff) |
+ Removed DEFINE from CMakeLists.txt
+ Fixed paths to include files
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index dbc23a3..9d421af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -292,7 +292,7 @@ option(BUILD_SHARED_LIBS "Compile shared libraries" OFF) add_library(${LIBRARY_NAME} ${SRC_FILES} ${SRC_ADDITIONAL_FILES}) target_link_libraries(${LIBRARY_NAME} ${LINK_LIBS}) -target_compile_definitions(${LIBRARY_NAME} PUBLIC -D__STORMLIB_SELF__) #CMake should take care of the linking +target_compile_definitions(${LIBRARY_NAME} PUBLIC) #CMake should take care of the linking target_include_directories(${LIBRARY_NAME} PUBLIC src/) set_target_properties(${LIBRARY_NAME} PROPERTIES PUBLIC_HEADER "src/StormLib.h;src/StormPort.h") if(BUILD_SHARED_LIBS) |