Skip to content

Commit 3edffc2

Browse files
kkorotkovr-brown
authored andcommitted
Cleanup
1 parent c0fdc16 commit 3edffc2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@
3737

3838
# Generated and working files and directories
3939
tests/run_tests
40-
build
40+
build*
4141
.vscode

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/")
99
find_package(CURL REQUIRED)
1010

1111
if (BUILD_TESTS)
12-
set(Boost_USE_STATIC_LIBS ON)
13-
find_package(Boost 1.40 REQUIRED unit_test_framework)
12+
set(Boost_USE_STATIC_LIBS ON)
13+
find_package(Boost 1.40 REQUIRED unit_test_framework)
1414
endif()
1515

1616
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
@@ -22,7 +22,7 @@ set(LIBS ${LIBS} ${CURL_LIBRARIES} ${JSONCPP_LIBRARIES})
2222
set(BUILD_SHARED_LIBS OFF)
2323

2424
add_definitions(-DCURL_STATICLIB)
25-
if(UNIX)
25+
if (UNIX)
2626
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -std=gnu++0x")
2727
endif()
2828

@@ -37,7 +37,7 @@ target_link_libraries(netlicensing ${LIBS})
3737
# demo client
3838
file(GLOB client_demo_headers client_demo/${db2lp_component}/*h)
3939
file(GLOB client_demo_sources client_demo/${db2lp_component}/*cc)
40-
add_executable(netlicensing-client-demo ${client_demo_headers} ${client_demo_sources} )
40+
add_executable(netlicensing-client-demo ${client_demo_headers} ${client_demo_sources})
4141
target_link_libraries(netlicensing-client-demo netlicensing ${LIBS})
4242

4343
if (BUILD_TESTS)

0 commit comments

Comments
 (0)