diff options
author | 2018-08-09 14:21:18 +0900 | |
---|---|---|
committer | 2018-08-09 14:21:18 +0900 | |
commit | c216327bd2d5e34909bc3ff6e10cb73c83ada4c1 (patch) | |
tree | a1941c02fc5335c277d5fb32aac9acec09b883c2 | |
parent | 4213ca64d24c65af8ccfb70d09418d5a79bd956e (diff) |
Revert "Compile together with sample code"
This reverts commit a1fc65266653056f211eebfd610c64fa5af70ad5.
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | sample/simple-egl/CMakeLists.txt | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0d7a37a..ad24ccb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,5 +44,3 @@ configure_file(libwindowmanager.pc.in libwindowmanager.pc @ONLY) INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/libwindowmanager.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) - -add_subdirectory(sample/simple-egl) diff --git a/sample/simple-egl/CMakeLists.txt b/sample/simple-egl/CMakeLists.txt index d6c6e90..05cfaff 100644 --- a/sample/simple-egl/CMakeLists.txt +++ b/sample/simple-egl/CMakeLists.txt @@ -29,13 +29,11 @@ set(CMAKE_CXX_FLAGS "-Wall -fpermissive") aux_source_directory(src DIR_SRCS) #head file path -include_directories( - include - ${CMAKE_SOURCE_DIR}/src) +include_directories(include) #set extern libraries SET(LIBRARIES - ${CMAKE_BINARY_DIR}/src/libwindowmanager.so + libwindowmanager.so libEGL.so libGLESv2.so libm.so |